Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cursor position changed event

I'm trying to extract the font of the next character after the current position of the cursor from a RichTextBox. This needs to be done everytime the cursor is moved in the RichTextBox. I haven't found the event for when the cursor position changes.

Does this event even exist? If not, is there another way to implement this?

Thanks

like image 233
Glenn Avatar asked Mar 05 '12 15:03

Glenn


1 Answers

Have you tried RichTextBox.SelectionChanged Event?

like image 77
Zabavsky Avatar answered Oct 18 '22 23:10

Zabavsky