From 9b04df8e99b54645a92580712a6551b39ac511f5 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Wed, 4 Apr 2001 13:36:39 +0000 Subject: Target API for changing document withot visible changes: SetTargetStart, SetTargetEnd, and ReplaceTarget. --- include/Scintilla.iface | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'include/Scintilla.iface') diff --git a/include/Scintilla.iface b/include/Scintilla.iface index cb524f185..8fdbdedcc 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -708,6 +708,17 @@ set void SetCaretWidth=2188(int pixelWidth,) # Returns the width of the insert mode caret get int GetCaretWidth=2189(,) +# Sets the position that starts the target which is used for updating the +# document without affecting the scroll position. +set void SetTargetStart=2190(position pos,) + +# Sets the position that ends the target which is used for updating the +# document without affecting the scroll position. +set void SetTargetEnd=2191(position pos,) + +# Replace the target text with the argument text. +fun void ReplaceTarget=2192(, string text) + # Show a call tip containing a definition near position pos. fun void CallTipShow=2200(position pos, string definition) -- cgit v1.2.3