diff options
| author | nyamatongwe <devnull@localhost> | 2010-03-26 06:31:57 +0000 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2010-03-26 06:31:57 +0000 | 
| commit | c6de3de1530c4bd4067cd6533de4a3a8c4092a5c (patch) | |
| tree | 9d553d3004fc4fc9de5aa2de943d11fbd35dfffc /doc/ScintillaDoc.html | |
| parent | 9d3b3ebfd5cc7f84e4afe5dc9ecab9d44055eee8 (diff) | |
| download | scintilla-mirror-c6de3de1530c4bd4067cd6533de4a3a8c4092a5c.tar.gz | |
Added SCI_GETTAG.
Diffstat (limited to 'doc/ScintillaDoc.html')
| -rw-r--r-- | doc/ScintillaDoc.html | 9 | 
1 files changed, 7 insertions, 2 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index b23fea4c7..848a4beb0 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -772,6 +772,7 @@ struct Sci_TextToFind {      *text)</a><br />       <a class="message" href="#SCI_REPLACETARGETRE">SCI_REPLACETARGETRE(int length, const char      *text)</a><br /> +     <a class="message" href="#SCI_GETTAG">SCI_GETTAG(int tagNumber, char *tagValue)</a><br />      </code>      <p><b id="SCI_SETTARGETSTART">SCI_SETTARGETSTART(int pos)</b><br /> @@ -818,6 +819,10 @@ struct Sci_TextToFind {             After replacement, the target range refers to the replacement text.             The return value is the length of the replacement string.</p> +    <p><b id="SCI_GETTAG">SCI_GETTAG(int tagNumber, char *tagValue)</b><br /> +     Discover what text was matched by tagged expressions in a regular expression search. +     This is useful if the application wants to interpret the replacement string itself.</p> +      <p>See also: <a class="message" href="#SCI_FINDTEXT"><code>SCI_FINDTEXT</code></a></p>      <h2 id="Overtype">Overtype</h2> @@ -2770,7 +2775,7 @@ struct Sci_TextToFind {       The whole of the text margin on a line may be displayed in a particular style with       <code>SCI_MARGINSETSTYLE</code> or each character may be individually styled with       <code>SCI_MARGINSETSTYLES</code> which uses an array of bytes with each byte setting the style -     of the corresponding text byte simlar to <code>SCI_SETSTYLINGEX</code>. +     of the corresponding text byte similar to <code>SCI_SETSTYLINGEX</code>.       Setting a text margin will cause a       <a class="message" href="#SC_MOD_CHANGEMARGIN"><code>SC_MOD_CHANGEMARGIN</code></a>       notification to be sent. @@ -2822,7 +2827,7 @@ struct Sci_TextToFind {       The whole of the text ANNOTATION on a line may be displayed in a particular style with       <code>SCI_ANNOTATIONSETSTYLE</code> or each character may be individually styled with       <code>SCI_ANNOTATIONSETSTYLES</code> which uses an array of bytes with each byte setting the style -     of the corresponding text byte simlar to <code>SCI_SETSTYLINGEX</code>. The text must be set first as it +     of the corresponding text byte similar to <code>SCI_SETSTYLINGEX</code>. The text must be set first as it       specifies how long the annotation is so how many bytes of styling to read.       Setting an annotation will cause a       <a class="message" href="#SC_MOD_CHANGEANNOTATION"><code>SC_MOD_CHANGEANNOTATION</code></a>  | 
