aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.iface
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2023-11-05 14:59:49 +1100
committerNeil <nyamatongwe@gmail.com>2023-11-05 14:59:49 +1100
commita3dd1952c420158febe7a11d596ba3f402eb17ab (patch)
treed7d5e93ffe069db6b26a2edec46f2fc44862ac03 /include/Scintilla.iface
parent04cc53969e0d23cf19365712ca8c6afdbc4f3822 (diff)
downloadscintilla-mirror-a3dd1952c420158febe7a11d596ba3f402eb17ab.tar.gz
Add SCI_CHANGESELECTIONMODE to simplify selection mode manipulation.
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r--include/Scintilla.iface4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index b15606af0..c393d6179 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -2359,6 +2359,10 @@ val SC_SEL_THIN=3
# by lines (SC_SEL_LINES).
set void SetSelectionMode=2422(SelectionMode selectionMode,)
+# Set the selection mode to stream (SC_SEL_STREAM) or rectangular (SC_SEL_RECTANGLE/SC_SEL_THIN) or
+# by lines (SC_SEL_LINES) without changing MoveExtendsSelection.
+fun void ChangeSelectionMode=2659(SelectionMode selectionMode,)
+
# Get the mode of the current selection.
get SelectionMode GetSelectionMode=2423(,)