aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.iface
diff options
context:
space:
mode:
authornyamatongwe <unknown>2002-04-14 00:29:39 +0000
committernyamatongwe <unknown>2002-04-14 00:29:39 +0000
commit736467e9bc1c6b6305d010afb7997ca80c23ed58 (patch)
tree0e56acd567a7120d5c075f69fbba9496e20929e4 /include/Scintilla.iface
parentc733bd4a9ada3557ea24a50ba7b218f680502556 (diff)
downloadscintilla-mirror-736467e9bc1c6b6305d010afb7997ca80c23ed58.tar.gz
Implemented endAtLastLine attribute which allows option of scrolling one
page below last document line.
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r--include/Scintilla.iface9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index 99afef5c0..8a4849025 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -943,6 +943,15 @@ get int GetScrollWidth=2275(,)
# Does not handle tab or control characters.
fun int TextWidth=2276(int style, string text)
+# 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.
+set void SetEndAtLastLine=2277(bool endAtLastLine,)
+
+# Retrieve whether the maximum scroll position has the last
+# line at the bottom of the view.
+get int GetEndAtLastLine=2278(,)
+
## Start of key messages
# Move caret down one line.
fun void LineDown=2300(,)