As you suspected these forums have gone unanswered for quite a long time. The project has moved to GitHub:
https://github.com/jacobslusser/ScintillaNET
From your description it sounds like you're interested in Multiple Selections. In v3 hosted at GitHub (NOT v2.x hosted here at CodePlex) you can set the
To have multiple cursors you would want to have multiple selections where each selection Caret and Anchor are at the same position.
Jacob
https://github.com/jacobslusser/ScintillaNET
From your description it sounds like you're interested in Multiple Selections. In v3 hosted at GitHub (NOT v2.x hosted here at CodePlex) you can set the
MultipleSelection
property to true
to enable multiple selections using the CTRL
key. You can programmatically create multiple selections using the Selections
collection.To have multiple cursors you would want to have multiple selections where each selection Caret and Anchor are at the same position.
Jacob