Articles in this section
Category / Section

Create a RichTextBox using RichTextEditor

1 min 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)

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied