How can I detect the current text formatting at the cursor position in a WPF RichTextBox?
|
|
Try the code below where rtb is the RichTextBox:
|
||
|
|
|
|
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); |
||
|
|
