aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/ScintillaDoc.html
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2015-02-23 08:20:32 +1100
committerNeil <nyamatongwe@gmail.com>2015-02-23 08:20:32 +1100
commitee3a66f0ebaea12c3fd4000a1acffdcc2b93176f (patch)
tree428a4dc64ccba8be1227fb46877fa6e772402083 /doc/ScintillaDoc.html
parent2424ec8a5c54ea9443b1c04f7b8a7bf530bccc5e (diff)
downloadscintilla-mirror-ee3a66f0ebaea12c3fd4000a1acffdcc2b93176f.tar.gz
Add SCI_GETTARGETTEXT as a simpler alternate to SCI_GETTEXTRANGE.
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r--doc/ScintillaDoc.html7
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html
index 1697af2ee..0a913506b 100644
--- a/doc/ScintillaDoc.html
+++ b/doc/ScintillaDoc.html
@@ -82,7 +82,7 @@
<h1>Scintilla Documentation</h1>
- <p>Last edited 13 February 2015 NH</p>
+ <p>Last edited 22 February 2015 NH</p>
<p>There is <a class="jump" href="Design.html">an overview of the internal design of
Scintilla</a>.<br />
@@ -643,6 +643,8 @@ struct Sci_TextRange {
<a class="message" href="#SCI_GETSEARCHFLAGS">SCI_GETSEARCHFLAGS</a><br />
<a class="message" href="#SCI_SEARCHINTARGET">SCI_SEARCHINTARGET(int length, const char
*text)</a><br />
+ <a class="message" href="#SCI_GETTARGETTEXT">SCI_GETTARGETTEXT(&lt;unused&gt;,
+ char *text)</a><br />
<a class="message" href="#SCI_REPLACETARGET">SCI_REPLACETARGET(int length, const char
*text)</a><br />
<a class="message" href="#SCI_REPLACETARGETRE">SCI_REPLACETARGETRE(int length, const char
@@ -677,6 +679,9 @@ struct Sci_TextRange {
text and the return value is the position of the start of the matching text. If the search
fails, the result is -1.</p>
+ <p><b id="SCI_GETTARGETTEXT">SCI_GETTARGETTEXT(&lt;unused&gt;, char *text)</b><br />
+ Retrieve the value in the target.</p>
+
<p><b id="SCI_REPLACETARGET">SCI_REPLACETARGET(int length, const char *text)</b><br />
If <code>length</code> is -1, <code>text</code> is a zero terminated string, otherwise
<code>length</code> sets the number of character to replace the target with.