From 345baa6dc0b6d816f80daa195c51413805abbcae Mon Sep 17 00:00:00 2001 From: Neil Date: Thu, 10 Jun 2021 22:53:01 +1000 Subject: Surround parameters with code tags styling as class 'parameter'. --- doc/ScintillaDoc.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index d972c99a7..2a842b222 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -1878,7 +1878,7 @@ struct Sci_TextToFind { SCI_GETSELECTIONNENDVIRTUALSPACE(int selection) → position
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.

+ Mostly of use to query each range for its text. The 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 SCI_ENSUREVISIBLEENFORCEPOLICY 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_SETYCARETPOLICY(int caretPolicy, int caretSlop).

@@ -2705,9 +2705,9 @@ struct Sci_TextToFind { 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 → int
Optimize speed of character category features like determining whether a character is a space or number at the expense of memory. Mostly used for Unicode documents. - The countCharacters parameter determines how many character starting from 0 are added to a look-up table with one byte used for each character. + The countCharacters 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 listType - This is set to the listType parameter from the This is set to the listType parameter from the SCI_USERLISTSHOW message that initiated the list. @@ -9206,7 +9206,7 @@ for line = lineStart to lineEnd do SCI_ENSUREVISIBLE(line) next listType - This is set to the listType parameter from the This is set to the listType parameter from the SCI_USERLISTSHOW message or 0 for an autocompletion. -- cgit v1.2.3