vote up 0 vote down star

How to replace a character in WPf richtextbox?

flag

1 Answer

vote up 0 vote down check

Hi,
WPF RichTextBox does not have any direct property or method that will convert its content to string which can in turn be used for manipulation. You could try something like this

TextRange textRange = new TextRange(rtb.Document.ContentStart, rtb.Document.ContentEnd);

string rtbContent = textRange.Text;

Now that you have the contents in a string, you can easily replace the part of the string you want.

HTH

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.