aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <unknown>2001-08-21 08:03:59 +0000
committernyamatongwe <unknown>2001-08-21 08:03:59 +0000
commit138fe643aaaf797ba7a079d8b8375b5157599706 (patch)
tree013a0304eb4d03e33bda43c0b0a46f61a5ae2519
parentfff906763f95427d9c473576e7f4af8de27b37c2 (diff)
downloadscintilla-mirror-138fe643aaaf797ba7a079d8b8375b5157599706.tar.gz
Added SCI_STYLESETCASE.
-rw-r--r--doc/ScintillaDoc.html5
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>