I know how to make font in RichTextBox1 bold:
[tt]
RichTextBox1.SelectionFont = New Font(RichTextBox1.Font, FontStyle.Bold)
[/tt]
How can I detect (check) if the selected text is bold?
I want to have one button that would make font bold (if it is not) or make font regular (if it is bold already)
Have fun.
---- Andy