I am making an combobox that changes the richTextBox's font, and I would like to be able to automatically change the combobox's selection when I click on a specific text in it, matching its font. I thought, it would be appropriate to add an onClick event on the text. This event would take the curent cursor position and make a selection with the range between the previous position and the current. I would be able to get the font from this selection.

If you know how, or can see a better way to complete this, thanks for replying!

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You don't need to actually create a selection range, just looking at rtb.SelectionFont.Name will return the font name from the current caret position (i.e. without needing to select anything)

link|improve this answer
SelectionFont doesn't exists for a RichTextBox in c#. All I found is rtb.Selection.GetPropertyValue(RichTextBox.FontFamilyProperty), and it finds no value since no text is selected. The cursor is at a specific opsition, that's all. Thanks tough for the help – Fjodr May 24 '11 at 17:49
Ah, its there in the windowsforms one, your using WPF? – Alex K. May 24 '11 at 17:52
Yes, sorry, I just forgot this subtility. I added a new tag. – Fjodr May 24 '11 at 17:58
rtb.Selection.GetPropertyValue(TextElement.FontFamilyProperty).ToString(); looks to do the same – Alex K. May 24 '11 at 18:05
Well, You are right. I saw this solution before, but there was an error in my code preventing this from working. Thanks for helping me realize my mistake. – Fjodr May 24 '11 at 18:24
feedback

Your Answer

 
or
required, but never shown

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