diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ScintillaDoc.html | 4 | ||||
-rw-r--r-- | doc/ScintillaHistory.html | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index bae44931d..01ec3e3ad 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -1107,6 +1107,7 @@ struct Sci_TextToFind { <a class="message" href="#SCI_COPYALLOWLINE">SCI_COPYALLOWLINE</a><br /> <a class="message" href="#SCI_SETPASTECONVERTENDINGS">SCI_SETPASTECONVERTENDINGS(bool convert)</a><br /> <a class="message" href="#SCI_GETPASTECONVERTENDINGS">SCI_GETPASTECONVERTENDINGS → bool</a><br /> + <a class="message" href="#SCI_PASTERECTANGULAR">SCI_PASTERECTANGULAR(position length, const char *text)</a><br /> </code> <p><b id="SCI_CUT">SCI_CUT</b><br /> @@ -1147,6 +1148,9 @@ struct Sci_TextToFind { <a class="seealso" href="#SCI_SETEOLMODE">SCI_SETEOLMODE</a>. Defaults to true.</p> + <p><b id="SCI_PASTERECTANGULAR">SCI_PASTERECTANGULAR(position length, const char *text)</b><br/> + Pastes the given text into the existing rectangular or empty selection, overwriting any selected text.</p> + <h2 id="ErrorHandling">Error handling</h2> <code><a class="message" href="#SCI_SETSTATUS">SCI_SETSTATUS(int status)</a><br /> diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index 30008fc85..39af707b8 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -585,6 +585,9 @@ and support setting a representation for the "\r\n" line end sequence. </li> <li> + Add SCI_PASTERECTANGULAR to insert text like a rectangular paste. + </li> + <li> Fixed bug with SCI_GETLASTCHILD. <a href="https://sourceforge.net/p/scintilla/bugs/2260/">Bug #2260</a>. </li> |