diff options
Diffstat (limited to 'doc/ScintillaDoc.html')
| -rw-r--r-- | doc/ScintillaDoc.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index d432043f6..c21bd2e29 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -959,6 +959,12 @@ struct Sci_TextRangeFull { </tr> <tr> + <th align="left"><code>SC_STATUS_OUTSIDE_DOCUMENT</code></th> + <td>3</td> + <td>An operation was attempted on a position that is outside the document</td> + </tr> + + <tr> <th align="left"><code>SC_STATUS_WARN_REGEX</code></th> <td>1001</td> <td>Regular expression is invalid</td> @@ -967,6 +973,10 @@ struct Sci_TextRangeFull { </tbody> </table> + <p>To more easily check the status of APIs, applications should call the direct status function using + <a class="message" href="#SCI_GETDIRECTSTATUSFUNCTION"><code>SCI_GETDIRECTSTATUSFUNCTION</code></a>. + </p> + <h2 id="Selection">Selection</h2> <p>Scintilla maintains a selection that stretches between two points, the anchor and the @@ -2890,6 +2900,16 @@ struct Sci_TextToFindFull { <td>A horizontal line stretching until the tabstop.</td> </tr> + + <tr> + <th align="left"><code>SCTD_CONTROLCHAR</code></th> + + <td>2</td> + + <td>Will be drawn as a control code according to the configured + <a href="#CharacterRepresentations">character representation</a> + without any indentation.</td> + </tr> </tbody> </table> |
