diff options
author | Neil <nyamatongwe@gmail.com> | 2021-05-28 09:42:05 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-05-28 09:42:05 +1000 |
commit | ce72ce1bf80bdb20070821f0758e45dccd541d64 (patch) | |
tree | e68eee4269bd09086ab748e8136d6d17ff245c35 | |
parent | dc2e91331dab55730cbd29d4d64a37adc26ed2a6 (diff) | |
download | scintilla-mirror-ce72ce1bf80bdb20070821f0758e45dccd541d64.tar.gz |
Moved SCI_SETFONTLOCALE to correct position.
-rw-r--r-- | doc/ScintillaDoc.html | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index d1abef8de..07d66c785 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -128,7 +128,7 @@ <h1>Scintilla Documentation</h1> - <p>Last edited 25 May 2021 NH</p> + <p>Last edited 28 May 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 /> @@ -3249,6 +3249,15 @@ struct Sci_TextToFind { may change and an underline appear to indicate that these areas are sensitive to clicking. This may be used to allow hyperlinks to other documents.</p> + <p><b id="SCI_SETFONTLOCALE">SCI_SETFONTLOCALE(<unused>, const char *localeName)</b><br /> + <b id="SCI_GETFONTLOCALE">SCI_GETFONTLOCALE(<unused>, char *localeName NUL-terminated) → int</b><br /> + These messages set the locale used for font selection with language-dependent glyphs. + It may, depending on platform and other circumstances influence the display of text, so setting "zh-Hant" may result in traditional + Chinese display and "zh-Hans" may result in simplified Chinese display. + It is currently only implemented for Win32 using DirectWrite where the value is passed as the localeName argument to CreateTextFormat. + The default value is US English "en-us". + </p> + <h2 id="ElementColours">Element colours</h2> <p>The colours of some visual elements can be changed with these methods. @@ -3474,15 +3483,6 @@ struct Sci_TextToFind { </tbody> </table> - <p><b id="SCI_SETFONTLOCALE">SCI_SETFONTLOCALE(<unused>, const char *localeName)</b><br /> - <b id="SCI_GETFONTLOCALE">SCI_GETFONTLOCALE(<unused>, char *localeName NUL-terminated) → int</b><br /> - These messages set the locale used for font selection with language-dependent glyphs. - It may, depending on platform and other circumstances influence the display of text, so setting "zh-Hant" may result in traditional - Chinese display and "zh-Hans" may result in simplified Chinese display. - It is currently only implemented for Win32 using DirectWrite where the value is passed as the localeName argument to CreateTextFormat. - The default value is US English "en-us". - </p> - <h2 id="CaretAndSelectionStyles">Selection, caret, and hotspot styles</h2> <p>The selection is shown by changing the text and/or background colours. |