diff options
| author | Neil <nyamatongwe@gmail.com> | 2013-12-17 14:16:29 +1100 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2013-12-17 14:16:29 +1100 |
| commit | 07510a6ffd4f5b286c0d39711ddd9a651c4a84e2 (patch) | |
| tree | 9e8a3b88e8b0cf0f330ce63bfa093a41eb9a1e3c /doc/ScintillaDoc.html | |
| parent | 5d22624b5ff89b8e3fcefeb27c19012c668b247c (diff) | |
| download | scintilla-mirror-07510a6ffd4f5b286c0d39711ddd9a651c4a84e2.tar.gz | |
Added DropSelectionN API.
Diffstat (limited to 'doc/ScintillaDoc.html')
| -rw-r--r-- | doc/ScintillaDoc.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 43ec2d526..3be837849 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -1565,6 +1565,7 @@ struct Sci_TextToFind { <a class="message" href="#SCI_CLEARSELECTIONS">SCI_CLEARSELECTIONS</a><br /> <a class="message" href="#SCI_SETSELECTION">SCI_SETSELECTION(int caret, int anchor)</a><br /> <a class="message" href="#SCI_ADDSELECTION">SCI_ADDSELECTION(int caret, int anchor)</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</a><br /> <br /> @@ -1692,6 +1693,12 @@ struct Sci_TextToFind { added with <code>SCI_SETSELECTION</code> and later selections added with <code>SCI_ADDSELECTION</code></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. + If there is only one selection, or there is no selection <code>selection</code>, then there is no effect.</p> + + <p> <b id="SCI_SETMAINSELECTION">SCI_SETMAINSELECTION(int selection)</b><br /> <b id="SCI_GETMAINSELECTION">SCI_GETMAINSELECTION</b><br /> One of the selections is the main selection which is used to determine what range of text is automatically visible. |
