diff options
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 5417fa8dd..ed8db883d 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -1852,6 +1852,7 @@ struct Sci_TextToFindFull { <a class="message" href="#SCI_COPYRANGE">SCI_COPYRANGE(position start, position end)</a><br /> <a class="message" href="#SCI_COPYTEXT">SCI_COPYTEXT(position length, const char *text)</a><br /> <a class="message" href="#SCI_COPYALLOWLINE">SCI_COPYALLOWLINE</a><br /> + <a class="message" href="#SCI_CUTALLOWLINE">SCI_CUTALLOWLINE</a><br /> <a class="message" href="#SCI_SETPASTECONVERTENDINGS">SCI_SETPASTECONVERTENDINGS(bool convert)</a><br /> <a class="message" href="#SCI_GETPASTECONVERTENDINGS">SCI_GETPASTECONVERTENDINGS → bool</a><br /> <a class="message" href="#SCI_REPLACERECTANGULAR">SCI_REPLACERECTANGULAR(position length, const char *text)</a><br /> @@ -1863,6 +1864,7 @@ struct Sci_TextToFindFull { <b id="SCI_CLEAR">SCI_CLEAR</b><br /> <b id="SCI_CANPASTE">SCI_CANPASTE → bool</b><br /> <b id="SCI_COPYALLOWLINE">SCI_COPYALLOWLINE</b><br /> + <b id="SCI_CUTALLOWLINE">SCI_CUTALLOWLINE</b><br /> These commands perform the standard tasks of cutting and copying data to the clipboard, pasting from the clipboard into the document, and clearing the document. <code>SCI_CANPASTE</code> returns non-zero if the document isn't read-only and if the selection @@ -1882,6 +1884,11 @@ struct Sci_TextToFindFull { is added to the clipboard which is then used in <code>SCI_PASTE</code> to paste the whole line before the current line.</p> + <p><code>SCI_CUTALLOWLINE</code> works the same as SCI_CUT except that if the + selection is empty then the current line is cut. On Windows, an extra "MSDEVLineSelect" marker + is added to the clipboard which is then used in <code>SCI_PASTE</code> to paste + the whole line before the current line.</p> + <b id="SCI_COPYRANGE">SCI_COPYRANGE(position start, position end)</b><br /> <b id="SCI_COPYTEXT">SCI_COPYTEXT(position length, const char *text)</b><br /> <p><code>SCI_COPYRANGE</code> copies a range of text from the document to |