diff options
| author | nyamatongwe <devnull@localhost> | 2001-03-31 10:35:47 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2001-03-31 10:35:47 +0000 |
| commit | c1505c5abb1e1135e5b496aa097f632caa2527cc (patch) | |
| tree | f2922d4c74654d2ae7a23954a923d03b696bafbc /include/Scintilla.iface | |
| parent | 1150283816a23b066b34406a7d03e42dc328830d (diff) | |
| download | scintilla-mirror-c1505c5abb1e1135e5b496aa097f632caa2527cc.tar.gz | |
Added caret line feature.
Diffstat (limited to 'include/Scintilla.iface')
| -rw-r--r-- | include/Scintilla.iface | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index e542785fc..cb524f185 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -411,6 +411,18 @@ get int GetLineState=2093(int line,) # Retrieve the last line number that has line state. get int GetMaxLineState=2094(,) +# Is the background of the line containing the caret in a different colour? +get bool GetCaretLineVisible=2095(,) + +# Dsplay the background of the line containing the caret in a different colour. +set void SetCaretLineVisible=2096(bool show,) + +# Get the colour of the background of the line containing the caret. +get colour GetCaretLineBack=2097(,) + +# Set the colour of the background of the line containing the caret. +set void SetCaretLineBack=2098(colour back,) + # Display a auto-completion list. # The lenEntered parameter indicates how many characters before # the caret should be used to provide context. |
