Cursor Position Change Event

I am trying to extract the font of the next character after the current cursor position from a RichTextBox . This needs to be done every time the cursor moves to the RichTextBox . I did not find the event when the cursor position changes.

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

thanks

+6
source share
1 answer

Have you tried the RichTextBox.SelectionChanged Event?

+8
source

Source: https://habr.com/ru/post/910003/


All Articles