The ALT+selection modification enhancement was asked for in this thread: http://www.actiprosoftware.com/community/thread/352/feature-request-column-highlighting#1057 (nearly a decade ago). Has this enhancement been implemented? If not, I'm running into sort of an issue with our own custom implementation ALT+selection modifications.
Consider the following:
(this is our syntax editor control)
int start = this.SelectedView.Selection.TextRange.StartOffset; // 11
int end = this.SelectedView.Selection.TextRange.EndOffset; // 26
The first line is of length 11, but the hightlighted selection starts in column 13...so start will always be 11. UGH! It almost seems necessary to know what the start/end columns are in order to implement ALT+selection. That is...unless anyone knows a good workaround?
[Modified 11 years ago]