diff options
| author | nyamatongwe <devnull@localhost> | 2003-02-09 09:03:55 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2003-02-09 09:03:55 +0000 |
| commit | 2fb461f38ccc02f133c41d0badab23c32cfb8f54 (patch) | |
| tree | 5de791b12eec76616c6f2210fdf856abff0a89db /include/Scintilla.iface | |
| parent | 50fe4c1dedae94692f95ffaf79c60bb122616d37 (diff) | |
| download | scintilla-mirror-2fb461f38ccc02f133c41d0badab23c32cfb8f54.tar.gz | |
Join and Split lines methods.
Method to copy selection end points to target.
Diffstat (limited to 'include/Scintilla.iface')
| -rw-r--r-- | include/Scintilla.iface | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 09f5aea91..29b790ecc 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1036,6 +1036,16 @@ get bool GetTwoPhaseDraw=2283(,) # and then the foreground. This avoids chopping off characters that overlap the next run. set void SetTwoPhaseDraw=2284(bool twoPhase,) +# Make the target range start and end be the same as the selection range start and end. +fun void TargetFromSelection=2287(,) + +# Join the lines in the target. +fun void LinesJoin=2288(,) + +# Split the lines in the target into lines that are less wide than pixelWidth +# where possible. +fun void LinesSplit=2289(int pixelWidth,) + ## New messages go here ## Start of key messages |
