Articles in this section
Category / Section

Create a RichTextBox using RichTextEditor

4 mins read

Create a RichTextBox using RichTextEditor

Rich Text control will allow you to display and edit rich text in grid cells. The control enables you to optionally drop down an editable rich text window by wish you can modify the rich text in the cell.

We are also able to create the customized text without rich text editor by using RichTextFormat (RTF) the following code snippet is used to create a text in RTF format.

[C#]

 

string text = @"{\rtf1\ansi\ansicpg1252\deff0\deflang1033{\colortbl;\red0\green0\blue0;\red255\green0\blue0;} \ul\ulc2 underline text\ulnone\par}";

RichTextNode richTextNode = new RichTextNode(text, new RectangleF(300, 100, 120, 100));

richTextNode.LineStyle.LineColor = Color.DarkGray;

diagram1.Model.AppendChild(richTextNode);

 

[VB]

Dim text As String = "{\rtf1\ansi\ansicpg1252\deff0\deflang1033{\colortbl;\red0\green0\blue0;\red255\green0\blue0;} \ul\ulc2 underline text\ulnone\par}"

Dim richTextNode As New RichTextNode(text, New RectangleF(300, 100, 120, 100))

richTextNode.LineStyle.LineColor = Color.DarkGray

diagram1.Model.AppendChild(richTextNode)

Conclusion
I hope you enjoyed learning how to compress a PDF using C# and VB.NET.
You can refer to our WinForms PDF feature tour page to learn about its other groundbreaking feature representations and documentation,  and how to quickly get started for configuration specifications. For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusio, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forumsDirect-Trac, or feedback portal. We are always happy to assist you!
Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please  to leave a comment
Access denied
Access denied