diff options
author | rdaneelolivaw <unknown> | 2005-07-18 21:40:27 +0000 |
---|---|---|
committer | rdaneelolivaw <unknown> | 2005-07-18 21:40:27 +0000 |
commit | 0028e37fb8bcb33f1819d8705e63ee557b1798c6 (patch) | |
tree | 59ba40b7f5e88329e8b1a4d8f00157623ec282cc | |
parent | 7cd01aafaba6023c5ca2cc5828f01aeb3b833494 (diff) | |
download | scintilla-mirror-0028e37fb8bcb33f1819d8705e63ee557b1798c6.tar.gz |
RBR - make documented SC_SEL_* values match actually defined ones.
-rw-r--r-- | doc/ScintillaDoc.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index d9ee3eadc..452a94106 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -38,7 +38,7 @@ <h1>Scintilla Documentation</h1> - <p>Last edited 3/June/2005 RBR</p> + <p>Last edited 15/July/2005 RBR</p> <p>There is <a class="jump" href="Design.html">an overview of the internal design of Scintilla</a>.<br /> @@ -1125,9 +1125,9 @@ struct TextToFind { <p><b id="SCI_SETSELECTIONMODE">SCI_SETSELECTIONMODE(int mode)</b><br /> <b id="SCI_GETSELECTIONMODE">SCI_GETSELECTIONMODE</b><br /> The two functions set and get the selection mode, which can be - stream (<code>SC_SEL_STREAM</code>=1) or - rectangular (<code>SC_SEL_RECTANGLE</code>=2) - or by lines (<code>SC_SEL_LINES</code>=3). + stream (<code>SC_SEL_STREAM</code>=0) or + rectangular (<code>SC_SEL_RECTANGLE</code>=1) + or by lines (<code>SC_SEL_LINES</code>=2). When set in these modes, regular caret moves will extend or reduce the selection, until the mode is cancelled by a call with same value or with <code>SCI_CANCEL</code>. The get function returns the current mode even if the selection was made by mouse |