diff options
author | Neil <nyamatongwe@gmail.com> | 2023-11-05 22:11:26 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2023-11-05 22:11:26 +1100 |
commit | 26b60d88b6d848f3ba55ca046852e079be5fe3c6 (patch) | |
tree | baf6523ea5e4f2d5adfb021def287a6858802b23 /doc/ScintillaDoc.html | |
parent | a3dd1952c420158febe7a11d596ba3f402eb17ab (diff) | |
download | scintilla-mirror-26b60d88b6d848f3ba55ca046852e079be5fe3c6.tar.gz |
Add SCI_SELECTIONFROMPOINT for modifying multiple selections.
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r-- | doc/ScintillaDoc.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index dcabdd9ee..27a542e90 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -1199,6 +1199,7 @@ struct Sci_TextRangeFull { <a class="message" href="#SCI_CLEARSELECTIONS">SCI_CLEARSELECTIONS</a><br /> <a class="message" href="#SCI_SETSELECTION">SCI_SETSELECTION(position caret, position anchor)</a><br /> <a class="message" href="#SCI_ADDSELECTION">SCI_ADDSELECTION(position caret, position anchor)</a><br /> + <a class="message" href="#SCI_SELECTIONFROMPOINT">SCI_SELECTIONFROMPOINT(int x, int y) → int</a><br /> <a class="message" href="#SCI_DROPSELECTIONN">SCI_DROPSELECTIONN(int selection)</a><br /> <a class="message" href="#SCI_SETMAINSELECTION">SCI_SETMAINSELECTION(int selection)</a><br /> <a class="message" href="#SCI_GETMAINSELECTION">SCI_GETMAINSELECTION → int</a><br /> @@ -1344,6 +1345,11 @@ struct Sci_TextRangeFull { added with <code>SCI_SETSELECTION</code> and later selections added with <code>SCI_ADDSELECTION</code></p> <p> + <b id="SCI_SELECTIONFROMPOINT">SCI_SELECTIONFROMPOINT(int x, int y) → int</b><br /> + Return the index of the selection at the point. If there is no selection at the point, return -1. + This can be used to drop a selection or make it the main selection.</p> + + <p> <b id="SCI_DROPSELECTIONN">SCI_DROPSELECTIONN(int selection)</b><br /> If there are multiple selections, remove the indicated selection. If this was the main selection then make the previous selection the main and if it was the first then the last selection becomes main. |