diff options
author | nyamatongwe <devnull@localhost> | 2001-08-21 08:03:59 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-08-21 08:03:59 +0000 |
commit | dc72228324124e177ec52327ff4c88b310f3b8c3 (patch) | |
tree | 013a0304eb4d03e33bda43c0b0a46f61a5ae2519 | |
parent | 5fda84184bf58e6ddb9fab7cf3bf6b0aed2535fe (diff) | |
download | scintilla-mirror-dc72228324124e177ec52327ff4c88b310f3b8c3.tar.gz |
Added SCI_STYLESETCASE.
-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> |