diff options
| author | nyamatongwe <devnull@localhost> | 2002-04-14 00:29:39 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2002-04-14 00:29:39 +0000 |
| commit | e4a83332177c850cdbc614e31e3416091a130bac (patch) | |
| tree | 0e56acd567a7120d5c075f69fbba9496e20929e4 /doc/ScintillaDoc.html | |
| parent | c16edeff51bc12711b715b246299bda0d9fcfbe5 (diff) | |
| download | scintilla-mirror-e4a83332177c850cdbc614e31e3416091a130bac.tar.gz | |
Implemented endAtLastLine attribute which allows option of scrolling one
page below last document line.
Diffstat (limited to 'doc/ScintillaDoc.html')
| -rw-r--r-- | doc/ScintillaDoc.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 8b1e6dca5..55f397b8b 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -286,6 +286,10 @@ SCI_SETHSCROLLBAR(bool visible) SCI_GETHSCROLLBAR SCI_GETXOFFSET SCI_SETXOFFSET(int xoffset) +SCI_SETSCROLLWIDTH(int pixelWidth) +SCI_GETSCROLLWIDTH +SCI_SETENDATLASTLINE(bool endAtLastLine) +SCI_GETENDATLASTLINE </pre> <p> SCI_SETCARETPOLICY can be set to a combination of the flags CARET_SLOP @@ -307,6 +311,14 @@ SCI_SETXOFFSET(int xoffset) <p> The xoffset is the horizontal scroll position in pixels. </p> + <p> + SCI_SETSCROLLWIDTH sets the document width assumed for scrolling. + </p> + <p> + SCI_SETENDATLASTLINE sets the scroll range so that maximum + scroll position has the last line at the bottom of the view (default). + Setting this to false allows scrolling one page below the last line. + </p> <h3> Searching </h3> |
