diff options
author | nyamatongwe <unknown> | 2005-03-05 03:02:15 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2005-03-05 03:02:15 +0000 |
commit | 3f647ed74405f6ac92eb3e2a8acc5adf3af1e095 (patch) | |
tree | 7b9b74ed3e030cef20a7ecf6ebabc9c93e248173 | |
parent | 208ef4b648b1e96aa3ed2b1445bf9923d84f1ca4 (diff) | |
download | scintilla-mirror-3f647ed74405f6ac92eb3e2a8acc5adf3af1e095.tar.gz |
A bit more detail on text field of SCNotification.
-rw-r--r-- | doc/ScintillaDoc.html | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index e5dab88d1..7c4637c33 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -4477,7 +4477,9 @@ href="#SCI_POSITIONFROMLINE">SCI_POSITIONFROMLINE</a>(lineNumber); <td align="left">Valid for text changes, not for style changes. If we are collecting undo information this holds a pointer to the text that is handed to the Undo system, otherwise - it is zero.</td> + it is zero. For user performed SC_MOD_BEFOREDELETE the text field is 0 and + for user performed SC_MOD_BEFOREINSERT the text field points to an array of cells, + not bytes.</td> </tr> <tr> @@ -4529,7 +4531,7 @@ href="#SCI_POSITIONFROMLINE">SCI_POSITIONFROMLINE</a>(lineNumber); <td>Text has been inserted into the document.</td> - <td><code>position, length, linesAdded</code></td> + <td><code>position, length, text, linesAdded</code></td> </tr> <tr> @@ -4539,7 +4541,7 @@ href="#SCI_POSITIONFROMLINE">SCI_POSITIONFROMLINE</a>(lineNumber); <td>Text has been removed from the document.</td> - <td><code>position, length, linesAdded</code></td> + <td><code>position, length, text, linesAdded</code></td> </tr> <tr> |