From 2ceaae0b1f19981706806cd71a1dff695b72cc1a Mon Sep 17 00:00:00 2001 From: Neil Date: Fri, 15 Nov 2019 08:19:12 +1100 Subject: Feature [feature-requests:#1316] Add access to virtual space at start and end of multiple selections. --- include/Scintilla.iface | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'include/Scintilla.iface') diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 1daaf4b9d..9fa952f95 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -2599,9 +2599,15 @@ set void SetSelectionNStart=2584(int selection, position anchor) # Returns the position at the start of the selection. get position GetSelectionNStart=2585(int selection,) +# Returns the virtual space at the start of the selection. +get position GetSelectionNStartVirtualSpace=2726(int selection,) + # Sets the position that ends the selection - this becomes the currentPosition. set void SetSelectionNEnd=2586(int selection, position caret) +# Returns the virtual space at the end of the selection. +get position GetSelectionNEndVirtualSpace=2727(int selection,) + # Returns the position at the end of the selection. get position GetSelectionNEnd=2587(int selection,) -- cgit v1.2.3