diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/ScintillaDoc.html | 15 | 
1 files changed, 15 insertions, 0 deletions
| diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 98a242f86..743838af0 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -103,6 +103,14 @@ SCI_GETSTYLEBITS         the SCI_CLEARDOCUMENTSTYLE can be used to clear all styling information and         reset the folding state.      </p> +<pre> +SCI_SETOVERTYPE +SCI_GETOVERTYPE +</pre> +    <p> +      SCI_GETOVERTYPE returns TRUE if overtyping is active otherwise  +      FALSE will be returned. Use SCI_GETOVERTYPE to set the overtype node. +    </p>      <h3>         Standard commands      </h3> @@ -970,6 +978,13 @@ SCN_CHARADDED(int charadded)        or auto completion list.      </p>  <pre> +SCN_POSCHANGED(int newPos) +</pre> +    <p> +       Fired when the user moves the cursor to a different position in the text. +      Can be used by the container to cancel some time consuming thread. +    </p> +<pre>  SCN_SAVEPOINTREACHED(int issavepoint)  SCI_SETSAVEPOINT  </pre> | 
