diff options
Diffstat (limited to 'doc/ScintillaDoc.html')
| -rw-r--r-- | doc/ScintillaDoc.html | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 62758d424..83fd07547 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -428,6 +428,7 @@ SCI_STYLESETEOLFILLED(int stylenumber, bool eolfilled)  SCI_STYLESETUNDERLINE(int stylenumber, bool underline)  SCI_STYLESETCHARACTERSET(int stylenumber, int charset)  SCI_STYLESETVISIBLE(int stylenumber, bool visible) +SCI_STYLESETCASE(int stylenumber, SC_CASE_MIXED or SC_CASE_UPPER or SC_CASE_LOWER)  </pre>      <p>         While the style setting messages mentioned above, change the style numbers associated with @@ -467,6 +468,10 @@ SC_CHARSET_HANGUL, and SC_CHARSET_SHIFTJIS.        STYLE_CONTROLCHAR, and STYLE_INDENTGUIDE.         These can be defined with the SCI_STYLESET* messages.      </p> +    <p> +      SCI_STYLESETCASE can force text to be displayed in upper case +      (SC_CASE_UPPER) or lower case (SC_CASE_LOWER). +    </p>      <h3>         Caret and Selection styles      </h3> | 
