I am able to change the text of the whole RTB, but not the selected text.
I'm currently trying something around this:
richTextBox1.SelectedText = fontDialog1.Font;
I know that the above method definitely won't work, but开发者_StackOverflow中文版 it's the current course of action that I'm trying.
But I just don't know how to access the font "field" for the selected text. Any ideas?
richTextBox1.SelectionFont = new Font("Arial", 16);
精彩评论