diff options
author | Neil <nyamatongwe@gmail.com> | 2014-08-09 15:03:44 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2014-08-09 15:03:44 +1000 |
commit | 256968cd96b6d1230d37974ff8e529c5c5575ac0 (patch) | |
tree | eb0a482b95897b44f449d1f2f1326d1ed88fcd85 | |
parent | 4f382b2e4a37af5f9d04242cbcc08001533c9157 (diff) | |
download | scintilla-mirror-256968cd96b6d1230d37974ff8e529c5c5575ac0.tar.gz |
Documented SC_MOD_CHANGETABSTOPS.
-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 689d9c949..a4dd4cc9c 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -3426,7 +3426,9 @@ struct Sci_TextToFind { <code>SCI_CLEARTABSTOPS</code> clears explicit tabstops on a line. <code>SCI_ADDTABSTOP</code> adds an explicit tabstop at the specified distance from the left (in pixels), and <code>SCI_GETNEXTTABSTOP</code> gets the next explicit tabstop position, or zero if there - aren't any.</p> + aren't any. + Changing tab stops produces a <a class="message" href="#SC_MOD_CHANGETABSTOPS">SC_MOD_CHANGETABSTOPS</a> notification. + </p> <p><b id="SCI_SETUSETABS">SCI_SETUSETABS(bool useTabs)</b><br /> <b id="SCI_GETUSETABS">SCI_GETUSETABS</b><br /> @@ -6924,6 +6926,17 @@ href="#SCI_POSITIONFROMLINE">SCI_POSITIONFROMLINE</a>(lineNumber); </tr> <tr> + <td align="left"><code id="SC_MOD_CHANGETABSTOPS">SC_MOD_CHANGETABSTOPS</code></td> + + <td align="right">0x200000</td> + + <td>The explicit tab stops on a line have changed because <a class="message" href="#SCI_CLEARTABSTOPS">SCI_CLEARTABSTOPS</a> or + <a class="message" href="#SCI_ADDTABSTOP">SCI_ADDTABSTOP</a> was called.</td> + + <td><code>line</code></td> + </tr> + + <tr> <td align="left"><code id="SC_MOD_LEXERSTATE">SC_MOD_LEXERSTATE</code></td> <td align="right">0x80000</td> |