The RichTextBox control permits us to display and edit content such as paragraphs, images, and tables.In one of my earlier posts, How To Make Table in RichTextBox Using C# I have shown samples for creating table in rich text box control. However, there are still some limitations with entering long string values,paragraphs, and images in […]
Display rtf file correctly In RichTextBox – C#
If you try to load an RTF file having a table with long text and display it in a normal RichTextBox control, you will get disappointed for sure. Because the basic out of the box RichTextBox doesn’t support word wrapping by default.For example, you have an RTF file “rtfTest.rtf“ with a content table like this […]
How To Create Table in RichTextbox Using C#
This article is to guide C# and VB.NET developers in creating a table in RichTextBox using C# and in a similar manner in VB.NET. Being a .NET programmer, you may have to edit formatted text, images, tables and any other such rich content. With simple textbox control, it is not possible. Here comes the use of […]