aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.iface
diff options
context:
space:
mode:
authornyamatongwe <unknown>2001-12-19 07:42:43 +0000
committernyamatongwe <unknown>2001-12-19 07:42:43 +0000
commita3e9b9fcf48df51d55fb1e5c2c696d73dc72c151 (patch)
tree2b7025f7018ab826f0c5da3e14cc6299430bd783 /include/Scintilla.iface
parentf3801f3ee91582dbe10abec295840c794da1858e (diff)
downloadscintilla-mirror-a3e9b9fcf48df51d55fb1e5c2c696d73dc72c151.tar.gz
Wrapping supported.
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 8e759c693..9e30673d7 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -896,6 +896,15 @@ fun int WordStartPosition=2266(position pos,)
# Get position of end of word
fun int WordEndPosition=2267(position pos,)
+val SC_WRAP_NONE=0
+val SC_WRAP_WORD=1
+
+# Sets whether text is word wrapped
+set void SetWrapMode=2268(int mode,)
+
+# Retrieve whether text is word wrapped
+get int GetWrapMode=2269(,)
+
## Start of key messages
# Move caret down one line.
fun void LineDown=2300(,)