Reputation: 31
I want to append text, for example "World" in a textbox, but not with the Windows.Forms
functions for RichTextBox
. Instead i want to specify position and the string that i want to insert into Rtf property of the RichTextBox
! So, is it possible to update the rtf string directly ?
Upvotes: 2
Views: 969
Reputation: 6689
string rtfStuffs = this.richTextBox1.Rtf;
// Edit as you see fit...
this.richTextBox1.Rtf = rtfStuffs;
Upvotes: 1