I have a WinForms program where, whenever you change your selection, the RichTextBox needs to change the colour of certain other text. In order to do this, it has to select that text, and therefore I lose my current selection.

I can save and load the SelectionStart and SelectionLength properties, but I can't keep the "selection direction": if the user was highlighting forwards or backwards from the cursor.

Any ideas about how I can either save the selection direction, or colour the text without having to change the selection?

link|improve this question

75% accept rate
Was this resolved at all? For my part, I tried sending keystrokes for "Shift-Left" and "Shift-Right" in quick succession to determine which way the caret moves and determine the "direction", but the problem with using keystrokes is that other logic attached to key events gets called as the result. – Mr. TA Apr 4 at 21:57
I don't think I ever did, I think I just used another prebuilt syntax highlighting control which was able to do that automatically. – Miguel May 8 at 10:24
feedback

2 Answers

Yuck, ugly problem. No, EM_SETPARAFORMAT can only work on the current selection. And EM_EXSETSEL always puts the caret at the end of the selection. You could detect the selection direction by observing the change in SelectionStart but you can't get the caret in the right spot. An edit control has the same problem.

It isn't normally a problem because re-coloring happens only when the user modifies text, not when she's selecting text. The only workaround I can think of is restoring the selection by injecting keystrokes. That's fugly.

link|improve this answer
I wonder what would happen if you used EM_EXSETSEL and had cpMax as a negative number. – Miguel Sep 27 '10 at 8:14
feedback

Another way could be setting the Rtf property directly. You do need to know the syntax of the rtf language.

PS. That will invalidate the selection, too. I did the keystroke injection myself.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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