JohnC
JohnC

Reputation: 4148

Winform create table in RichTextBox control

I need to create a simple editor using a RichTextBox control in a windows forms application that includes the ability to create tables.

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

If so, any pointers on the best way to do this would be appreciated.

Upvotes: 3

Views: 5989

Answers (1)

Stephen Wrighton
Stephen Wrighton

Reputation: 37829

The winforms RichTextbox control utilizes RTF as it's rich-format language. As such tables are an inherent part of the control, you just must know enough RTF to code up the table.

Here's the 1.9.1 specification. Enjoy.

Wikipedia has all the specifications listed on it

Upvotes: 1

Related Questions