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
Try to create a TextRange with RichBoxText content, then set Text to empty string:
TextRange
RichBoxText
Text
TextRange txt = new TextRange(richtxtSNotice.Document.ContentStart, richtxtSNotice.Document.ContentEnd); txt.Text = "";