diff options
author | nyamatongwe <devnull@localhost> | 2002-01-24 11:08:22 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2002-01-24 11:08:22 +0000 |
commit | e4772b7376e6b1527c3ed88ac2dba0bc95b6452a (patch) | |
tree | 505c3547e94f997cc2e890233d4e21882ba8fa41 /doc/ScintillaDoc.html | |
parent | 7b30ee22d13e9f266ee678abd9f1ac2feb946cd0 (diff) | |
download | scintilla-mirror-e4772b7376e6b1527c3ed88ac2dba0bc95b6452a.tar.gz |
Added parameter to WordStartPosition / WordEndPosition to indicate that
only word characters should be considered parts of words.
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r-- | doc/ScintillaDoc.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 292898603..0988ffc87 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -241,8 +241,8 @@ SCI_GETCURLINE(int textlen, char *text) SCI_LINESONSCREEN SCI_SELECTIONISRECTANGLE SCI_MOVECARETINSIDEVIEW -SCI_WORDENDPOSITION(int position) -SCI_WORDSTARTPOSITION(int position) +SCI_WORDENDPOSITION(int position, bool onlyWordCharacters) +SCI_WORDSTARTPOSITION(int position, bool onlyWordCharacters) </pre> <p> Scintilla maintains a selection which stretches between two points, the anchor and the |