From 345baa6dc0b6d816f80daa195c51413805abbcae Mon Sep 17 00:00:00 2001
From: Neil
Set or query the start and end position of each already existing selection.
Query the virtual space at start and end of each selection.
- Mostly of use to query each range for its text. The selection parameter is zero-based.
selection parameter is zero-based.
SCI_SETRECTANGULARSELECTIONCARET(position caret)
@@ -2268,7 +2268,7 @@ struct Sci_TextToFind {
SCI_SETVISIBLEPOLICY(int visiblePolicy, int visibleSlop)
This determines how the vertical positioning is determined when is
- called. It takes VISIBLE_SLOP and VISIBLE_STRICT flags for the policy
+ called. It takes VISIBLE_SLOP and VISIBLE_STRICT flags for the visiblePolicy
parameter. It is similar in operation to .
SCI_SETWORDCHARS(0, "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789");
SCI_GETWORDCHARS(<unused>, char *characters) → int
- This fills the characters parameter with all the characters included in words.
- The characters parameter must be large enough to hold all of the characters.
- If the characters parameter is 0 then the length that should be allocated
+ This fills the characters parameter with all the characters included in words.
+ The characters parameter must be large enough to hold all of the characters.
+ If the characters parameter is 0 then the length that should be allocated
to store the entire set is returned.
For multi-byte encodings, this API will not return meaningful values for 0x80 and above.
@@ -2737,7 +2737,7 @@ struct Sci_TextToFind { SCI_GETCHARACTERCATEGORYOPTIMIZATION → intcountCharacters parameter determines how many character starting from 0 are added to a look-up table with one byte used for each character.
It is reasonable to cover the set of characters likely to be used in a document so 0x100 for simple Roman text,
0x1000 to cover most simple alphabets, 0x10000 to cover most of East Asian languages, and 0x110000 to cover all possible characters.
@@ -8949,7 +8949,7 @@ for line = lineStart to lineEnd do SCI_ENSUREVISIBLE(line) next
listTypelistType parameter from the This is set to the listType parameter from the SCI_USERLISTSHOW message that
initiated the list.listTypelistType parameter from the This is set to the listType parameter from the SCI_USERLISTSHOW message
or 0 for an autocompletion.