diff options
author | nyamatongwe <devnull@localhost> | 2002-09-13 00:22:00 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2002-09-13 00:22:00 +0000 |
commit | 38da4a9135d0d427641b5a72a8efcc415d57f672 (patch) | |
tree | fc5b7b2810652ff40fd9a514dd06044a111a6568 | |
parent | 54db8763d71d7fbb96875d1b92134325844875d4 (diff) | |
download | scintilla-mirror-38da4a9135d0d427641b5a72a8efcc415d57f672.tar.gz |
Documented SCI_CHOOSECARETX.
-rw-r--r-- | doc/ScintillaDoc.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 5cc3408c1..efbf3bdb6 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -245,6 +245,7 @@ SCI_WORDENDPOSITION(int position, bool onlyWordCharacters) SCI_WORDSTARTPOSITION(int position, bool onlyWordCharacters) SCI_TEXTWIDTH(int stylenumber, char *text) SCI_TEXTHEIGHT(int line) +SCI_CHOOSECARETX </pre> <p> Scintilla maintains a selection which stretches between two points, the anchor and the @@ -277,6 +278,12 @@ SCI_TEXTHEIGHT(int line) the start and end of words using the same definition of words as used internally within Scintilla. </p> + <p> + Scintilla remembers the x value of the last position horizontally moved to explicitly + by the user and this value is then used when moving vertically such as by using + the up and down keys. This remembered value may be set to the x position of the + caret with SCI_CHOOSECARETX. + </p> <h3> Scrolling and automatic scrolling </h3> |