diff options
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r-- | doc/ScintillaDoc.html | 40 |
1 files changed, 39 insertions, 1 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 03fe95ea9..531fca5aa 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -128,7 +128,7 @@ <h1>Scintilla Documentation</h1> - <p>Last edited 25 June 2021 NH</p> + <p>Last edited 17 July 2021 NH</p> <p style="background:#90F0C0">Scintilla 5 has moved the lexers from Scintilla into a new <a href="Lexilla.html">Lexilla</a> project.<br /> @@ -5741,6 +5741,8 @@ struct Sci_TextToFind { <a class="message" href="#SCI_AUTOCSETDROPRESTOFWORD">SCI_AUTOCSETDROPRESTOFWORD(bool dropRestOfWord)</a><br /> <a class="message" href="#SCI_AUTOCGETDROPRESTOFWORD">SCI_AUTOCGETDROPRESTOFWORD → bool</a><br /> + <a class="message" href="#SCI_AUTOCSETOPTIONS">SCI_AUTOCSETOPTIONS(int options)</a><br /> + <a class="message" href="#SCI_AUTOCGETOPTIONS">SCI_AUTOCGETOPTIONS → int</a><br /> <a class="message" href="#SCI_REGISTERIMAGE">SCI_REGISTERIMAGE(int type, const char *xpmData)</a><br /> <a class="message" href="#SCI_REGISTERRGBAIMAGE">SCI_REGISTERRGBAIMAGE(int type, const char *pixels)</a><br /> <a class="message" href="#SCI_CLEARREGISTEREDIMAGES">SCI_CLEARREGISTEREDIMAGES</a><br /> @@ -5887,6 +5889,42 @@ struct Sci_TextToFind { When an item is selected, any word characters following the caret are first erased if <code class="parameter">dropRestOfWord</code> is set <code>true</code>. The default is <code>false</code>.</p> + <p><b id="SCI_AUTOCSETOPTIONS">SCI_AUTOCSETOPTIONS(int options)</b><br /> + <b id="SCI_AUTOCGETOPTIONS">SCI_AUTOCGETOPTIONS → int</b><br /> + Set options for autocompletion from the following list.</p> + + <table class="standard" summary="Autocompletion options"> + <tbody> + <tr> + <th align="left">Symbol</th> + + <th>Value</th> + + <th align="left">Purpose</th> + </tr> + </tbody> + + <tbody valign="top"> + <tr> + <td align="left"><code>SC_AUTOCOMPLETE_NORMAL</code></td> + + <td align="center">0</td> + + <td>Display autocompletion using default settings.</td> + </tr> + + <tr> + <td align="left"><code>SC_AUTOCOMPLETE_FIXED_SIZE</code></td> + + <td align="center">1</td> + + <td>On Win32 only, use a fixed size list instead of one that can be resized by the user. + This also avoids a header rectangle above the list.</td> + </tr> + + </tbody> + </table> + <p> <b id="SCI_REGISTERIMAGE">SCI_REGISTERIMAGE(int type, const char *xpmData)</b><br /> <b id="SCI_REGISTERRGBAIMAGE">SCI_REGISTERRGBAIMAGE(int type, const char *pixels)</b><br /> |