vote up 1 vote down star

How can I detect the current text formatting at the cursor position in a WPF RichTextBox?

flag

59% accept rate

2 Answers

vote up 1 vote down check

Try the code below where rtb is the RichTextBox:

TextRange tr = new TextRange(rtb.Selection.Start, rtb.Selection.End);
object oFont = tr.GetPropertyValue(Run.FontFamilyProperty);
link|flag
vote up 2 vote down

I'd use the CaretPosition instead of the selection start and end, as if the RichTextBox actually has a selection that spans multiple areas of formatting you would get DependencyProperty.UnsetValue.

TextRange tr = new TextRange(rtb.CaretPosition, rtb.CaretPosition);
object oFont = tr.GetPropertyValue(Run.FontFamilyProperty);
link|flag

Your Answer

Get an OpenID
or

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