aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.iface
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2001-05-22 01:33:04 +0000
committernyamatongwe <devnull@localhost>2001-05-22 01:33:04 +0000
commit31cf66ea898e6fe8c025f08a7c309321b4784669 (patch)
treed1ea38fe6c47b29083918d7429c9d630d6b83c19 /include/Scintilla.iface
parentd44e001616681278b7b8df30b347f10dfaa704d4 (diff)
downloadscintilla-mirror-31cf66ea898e6fe8c025f08a7c309321b4784669.tar.gz
Support for forced upper and lower case styles.
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r--include/Scintilla.iface6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index 884f7332b..1431095c3 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -327,6 +327,12 @@ fun void StyleResetDefault=2058(,)
# Set a style to be underlined or not.
set void StyleSetUnderline=2059(int style, bool underline)
+val SC_CASE_MIXED=0
+val SC_CASE_UPPER=1
+val SC_CASE_LOWER=2
+# Set a style to be mixed case, or to force upper or lower case.
+set void StyleSetCase=2060(int style, int caseForce)
+
# Set the character set of the font in a style.
set void StyleSetCharacterSet=2066(int style, int characterSet)