how can I change the font for a currently selected text area inside a WPF RichTextBox?
How about something like:
TextSelection text = richTextBox.Selection; if (!text.IsEmpty) { text.ApplyPropertyValue(RichTextBox.FontSizeProperty, value); }