After getting the text in the RichTextBox I want to clear the text. How can I do that?
TextRange txt = new TextRange(richtxtSNotice.Document.ContentStart, ri
To clear all content of richtext box you can use the following code
richTextBox1->SelectAll(); richTextBox1->Clear();