diff options
| author | nyamatongwe <devnull@localhost> | 2001-01-29 09:04:02 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2001-01-29 09:04:02 +0000 |
| commit | 95a6589ffba12a6b7c34db1ff18f6c772530bb8a (patch) | |
| tree | 30ce8ccad5e0a7f41f4ebd7c77ae5a8d92cbf677 | |
| parent | 26c142cd52a478e40bce25a8cdcb212f65b33041 (diff) | |
| download | scintilla-mirror-95a6589ffba12a6b7c34db1ff18f6c772530bb8a.tar.gz | |
Updated documentation of caret policy and visible policy.
| -rw-r--r-- | doc/ScintillaDoc.html | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 1ed2a6783..df20a0926 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -213,11 +213,16 @@ SCI_MOVECARETINSIDEVIEW within the line of the caret. </p> <p> - SCI_SETCARETPOLICY can be set to a combination of the flags CARET_SLOP, - CARET_CENTER, and CARET_STRICT to change the automatic vertical positioning of the view - when ensuring a position is visible. SCI_SETVISIBLEPOLICY is a similar function that + SCI_SETCARETPOLICY can be set to a combination of the flags CARET_SLOP + and CARET_STRICT to change the automatic vertical positioning of the view + when ensuring a position is visible. If CARET_SLOP is on then the slop value + determines the number of line at top and botom of the view where the caret should not + go. If CARET_SLOP is off then the caret is centred within the view. When + CARET_STRICT is set then caret policy is rechecked even if the caret is completely + visible. + SCI_SETVISIBLEPOLICY is a similar function that determines how the vertical positioning is determined when SCI_ENSUREVISIBLE is - called. It takes VISIBLE_SLOP, VISIBLE_CENTER, and VISIBLE_STRICT flags + called. It takes VISIBLE_SLOP and VISIBLE_STRICT flags for the policy parameter. </p> <h3> |
