aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/ScintillaDoc.html
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2015-06-30 14:06:48 +1000
committerNeil <nyamatongwe@gmail.com>2015-06-30 14:06:48 +1000
commitc9ea3753b0d4f22ade1701e228d5fb19ef230bc7 (patch)
tree5aeef08d367b469f59516b4f7ff6e861690eb912 /doc/ScintillaDoc.html
parent5928d8b0a198fedb5e23855aa37cc95b4220a26d (diff)
downloadscintilla-mirror-c9ea3753b0d4f22ade1701e228d5fb19ef230bc7.tar.gz
Added SC_CASE_CAMEL to the case mode style attribute.
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r--doc/ScintillaDoc.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html
index 6e3bab3a6..ed0429efc 100644
--- a/doc/ScintillaDoc.html
+++ b/doc/ScintillaDoc.html
@@ -2699,8 +2699,8 @@ struct Sci_TextToFind {
<p><b id="SCI_STYLESETCASE">SCI_STYLESETCASE(int styleNumber, int caseMode)</b><br />
<b id="SCI_STYLEGETCASE">SCI_STYLEGETCASE(int styleNumber)</b><br />
The value of caseMode determines how text is displayed. You can set upper case
- (<code>SC_CASE_UPPER</code>, 1) or lower case (<code>SC_CASE_LOWER</code>, 2) or display
- normally (<code>SC_CASE_MIXED</code>, 0). This does not change the stored text, only how it is
+ (<code>SC_CASE_UPPER</code>, 1) or lower case (<code>SC_CASE_LOWER</code>, 2) or camel case (<code>SC_CASE_CAMEL</code>, 3)
+ or display normally (<code>SC_CASE_MIXED</code>, 0). This does not change the stored text, only how it is
displayed.</p>
<p><b id="SCI_STYLESETVISIBLE">SCI_STYLESETVISIBLE(int styleNumber, bool visible)</b><br />