aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.iface
diff options
context:
space:
mode:
authornyamatongwe <unknown>2001-11-08 00:29:33 +0000
committernyamatongwe <unknown>2001-11-08 00:29:33 +0000
commit4618be21c0ec2e5af65dc3d6dd3263b88ef9d628 (patch)
tree44fa308a79139cc84491c744dad914ff1f8a5f17 /include/Scintilla.iface
parentf23b95b9e9cd32dcfb69b8f949856e8ba98b9398 (diff)
downloadscintilla-mirror-4618be21c0ec2e5af65dc3d6dd3263b88ef9d628.tar.gz
Added methods for finding the start and end of words.
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r--include/Scintilla.iface6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index 0a3c98e68..f6d360fc6 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -890,6 +890,12 @@ set void SetMouseDwellTime=2264(int periodMilliseconds,)
# Retrieve the time the mouse must sit still to generate a mouse dwell event
get int GetMouseDwellTime=2265(,)
+# Get position of start of word
+fun int WordStartPosition=2266(position pos,)
+
+# Get position of end of word
+fun int WordEndPosition=2267(position pos,)
+
## Start of key messages
# Move caret down one line.
fun void LineDown=2300(,)