diff options
author | nyamatongwe <unknown> | 2012-05-26 15:25:57 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2012-05-26 15:25:57 +1000 |
commit | 215215c5fc8f76e0857602b89a5ed1d7c41c080c (patch) | |
tree | f2785b94e34ef728479bc23986b8f45c54dc6cb5 /doc/ScintillaDoc.html | |
parent | 00c771cecda620db28cec9e4c50830f542e3a829 (diff) | |
download | scintilla-mirror-215215c5fc8f76e0857602b89a5ed1d7c41c080c.tar.gz |
Add DeleteRange method.
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r-- | doc/ScintillaDoc.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index c610b9c70..1651c0862 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -387,6 +387,7 @@ <a class="message" href="#SCI_APPENDTEXT">SCI_APPENDTEXT(int length, const char *s)</a><br /> <a class="message" href="#SCI_INSERTTEXT">SCI_INSERTTEXT(int pos, const char *text)</a><br /> <a class="message" href="#SCI_CLEARALL">SCI_CLEARALL</a><br /> + <a class="message" href="#SCI_DELETERANGE">SCI_DELETERANGE(int pos, int deleteLength)</a><br /> <a class="message" href="#SCI_CLEARDOCUMENTSTYLE">SCI_CLEARDOCUMENTSTYLE</a><br /> <a class="message" href="#SCI_GETCHARAT">SCI_GETCHARAT(int position)</a><br /> <a class="message" href="#SCI_GETSTYLEAT">SCI_GETSTYLEAT(int position)</a><br /> @@ -519,6 +520,9 @@ <p><b id="SCI_CLEARALL">SCI_CLEARALL</b><br /> Unless the document is read-only, this deletes all the text.</p> + <p><b id="SCI_DELETERANGE">SCI_DELETERANGE(int pos, int deleteLength)</b><br /> + Deletes a range of text in the document.</p> + <p><b id="SCI_CLEARDOCUMENTSTYLE">SCI_CLEARDOCUMENTSTYLE</b><br /> When wanting to completely restyle the document, for example after choosing a lexer, the <code>SCI_CLEARDOCUMENTSTYLE</code> can be used to clear all styling information and reset the |