diff options
author | Neil <nyamatongwe@gmail.com> | 2025-04-27 09:53:31 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2025-04-27 09:53:31 +1000 |
commit | 08a76e686ec97d3d6c261729c42777dc0c3a3fc3 (patch) | |
tree | d9d077309ef00848d48ecc64a6080b9a9901e58f | |
parent | 8d099936378201fc43991f392f22915685363895 (diff) | |
download | scintilla-mirror-08a76e686ec97d3d6c261729c42777dc0c3a3fc3.tar.gz |
Added a table for virtual space options.
-rw-r--r-- | doc/ScintillaDoc.html | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 81aecb0a7..1ee1c2306 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -130,7 +130,7 @@ <h1>Scintilla Documentation</h1> - <p>Last edited 23 April 2025 NH</p> + <p>Last edited 27 April 2025 NH</p> <p style="background:#90F0C0">Scintilla 5 has moved the lexers from Scintilla into a new <a href="Lexilla.html">Lexilla</a> project.<br /> @@ -1326,6 +1326,35 @@ struct Sci_TextRangeFull { This is most commonly desired in conjunction with virtual space but is an independent setting so works without virtual space.</p> + <table class="standard" summary="Virtual space options"> + <tbody valign="top"> + <tr> + <th align="left"><code>SCVS_NONE</code></th> + <td>0</td> + <td>The default: no virtual space.</td> + </tr> + + <tr> + <th align="left"><code>SCVS_RECTANGULARSELECTION</code></th> + <td>1</td> + <td>Virtual space is enabled for rectangular selections.</td> + </tr> + + <tr> + <th align="left"><code>SCVS_USERACCESSIBLE</code></th> + <td>2</td> + <td>Virtual space is enabled for user actions such as right arrow key or clicking beyond line end.</td> + </tr> + + <tr> + <th align="left"><code>SCVS_NOWRAPLINESTART</code></th> + <td>4</td> + <td>Left arrow does not wrap to the previous line.</td> + </tr> + + </tbody> + </table> + <p> <b id="SCI_SETRECTANGULARSELECTIONMODIFIER">SCI_SETRECTANGULARSELECTIONMODIFIER(int modifier)</b><br /> <b id="SCI_GETRECTANGULARSELECTIONMODIFIER">SCI_GETRECTANGULARSELECTIONMODIFIER → int</b><br /> |