diff options
author | nyamatongwe <devnull@localhost> | 2002-08-07 00:39:01 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2002-08-07 00:39:01 +0000 |
commit | 6d7c30812d97f74a1eb5ffab91561d395ee0f2bf (patch) | |
tree | d78c85e0a84cf5fd6591ff0ba45cdf193ae26cb3 | |
parent | 4190d690c251fbb02b5d48dff2dfbd5107f64daf (diff) | |
download | scintilla-mirror-6d7c30812d97f74a1eb5ffab91561d395ee0f2bf.tar.gz |
Documentation for setting whitepace fore and back.
-rw-r--r-- | doc/ScintillaDoc.html | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 719289e29..0bf695624 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -690,6 +690,8 @@ SCI_SETCARETWIDTH(int pixels) SCI_GETCARETWIDTH SCI_SETCONTROLCHARSYMBOL(int symbol) SCI_GETCONTROLCHARSYMBOL +SCI_SETWHITESPACEFORE(bool useWhitespaceForeColour, int colour) +SCI_SETWHITESPACEBACK(bool useWhitespaceBackColour, int colour) </pre> <p> The selection is shown by changing the foreground and / or @@ -703,7 +705,7 @@ SCI_GETCONTROLCHARSYMBOL The colour of the caret can be set with SCI_SETCARETFORE. The background colour of the line containing the caret can be changed to override the styles on that line with - SCI_GETCARETLINEVISIBLE and the colour used set with + SCI_GETCARETLINEVISIBLE and the colour used set with SCI_SETCARETLINEBACK. The caret line background colour is overridden by any background colour used to display markers. @@ -715,6 +717,12 @@ SCI_GETCONTROLCHARSYMBOL of 1, 2 or 3 pixels. </p> <p> + By default, the colour of visible whitespace is determined by the lexer in use. The + foreground and / or background colour of all visible whitespace can be set globally, + overriding the lexer's colours with SCI_SETWHITESPACEFORE and + SCI_SETWHITESPACEBACK. + </p> + <p> SCI_SETCONTROLCHARSYMBOL specifies a character to use to indicate control characters rather than having them displayed as mnemonics. </p> |