diff options
| author | nyamatongwe <devnull@localhost> | 2005-03-05 03:02:15 +0000 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2005-03-05 03:02:15 +0000 | 
| commit | ed6fa5a0c1b00ba9cbc12008a5efc06b65f8f96c (patch) | |
| tree | 7b9b74ed3e030cef20a7ecf6ebabc9c93e248173 | |
| parent | 92481ad0ad3adb18b62bd03d7e419726a531be71 (diff) | |
| download | scintilla-mirror-ed6fa5a0c1b00ba9cbc12008a5efc06b65f8f96c.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> | 
