Winform creates a table in a RichTextBox control

I need to create a simple editor using the RichTextBox control in a Windows forms application, which includes the ability to create tables.

Is it possible to create a table in a RichTextBox control?

If so, then any pointers to the best way to do this will be appreciated.

+3
source share
1 answer

The RichTextbox winforms control uses RTF as a rich format language. Since such tables are an integral part of the control, you just need to know enough RTF to encode the table.

Here is the 1.9.1 specification . Enjoy it.

Wikipedia ,

+2

Source: https://habr.com/ru/post/1698889/


All Articles