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
This is a simple way of doing it.
public void Clear() { richTextBox1.SelectAll(); richTextBox1.Selection.Text = ""; }