diff options
author | nyamatongwe <unknown> | 2007-07-26 07:39:41 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2007-07-26 07:39:41 +0000 |
commit | 0746ffe96fa9eb97bf43c529b8118f7407d4bc0f (patch) | |
tree | 4cb6a3ce653584910cd7e8a4ae645adee0693951 | |
parent | 5068b02e1f2ef2c0e05063498b01fb36d4f4a57c (diff) | |
download | scintilla-mirror-0746ffe96fa9eb97bf43c529b8118f7407d4bc0f.tar.gz |
Documented SC_MOD_CHANGELINESTATE.
-rw-r--r-- | doc/ScintillaDoc.html | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 567fba732..e13b71775 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -1863,7 +1863,9 @@ struct TextToFind { As well as the 8 bits of lexical state stored for each character there is also an integer stored for each line. This can be used for longer lived parse states such as what the current scripting language is in an ASP page. Use <code>SCI_SETLINESTATE</code> to set the integer - value and <code>SCI_GETLINESTATE</code> to get the value.</p> + value and <code>SCI_GETLINESTATE</code> to get the value. + Changing the value produces a <a class="message" href="#SC_MOD_CHANGELINESTATE">SC_MOD_CHANGELINESTATE</a> notification. + </p> <p><b id="SCI_GETMAXLINESTATE">SCI_GETMAXLINESTATE</b><br /> This returns the last line that has any line state.</p> @@ -5082,6 +5084,17 @@ href="#SCI_POSITIONFROMLINE">SCI_POSITIONFROMLINE</a>(lineNumber); </tr> <tr> + <td align="left"><code id="SC_MOD_CHANGELINESTATE">SC_MOD_CHANGELINESTATE</code></td> + + <td align="center">0x8000</td> + + <td>A line state has changed because <a class="message" href="#SCI_SETLINESTATE">SCI_SETLINESTATE</a> + was called.</td> + + <td><code>line</code></td> + </tr> + + <tr> <td align="left"><code>SC_MULTILINEUNDOREDO</code></td> <td align="center">0x1000</td> |