diff options
| author | nyamatongwe <devnull@localhost> | 2002-11-01 11:23:11 +0000 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2002-11-01 11:23:11 +0000 | 
| commit | 831e9056c2d03e1ca167f879177ef3e502c11f05 (patch) | |
| tree | 0be43c64271194fd0012787961017bb2cd632c23 | |
| parent | 0d52f8c052ea24dfc7dc5a53adf3fc3f916dbdee (diff) | |
| download | scintilla-mirror-831e9056c2d03e1ca167f879177ef3e502c11f05.tar.gz | |
AppendText documented.
| -rw-r--r-- | doc/ScintillaDoc.html | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 2a8fe708a..6e8156b7a 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -79,6 +79,7 @@ SCI_GETREADONLY  SCI_GETTEXTRANGE(<unused>, TEXTRANGE *tr)  SCI_ADDTEXT(int length, char *s)  SCI_ADDSTYLEDTEXT(int length, cell *s) +SCI_APPENDTEXT(int length, char *s)  SCI_INSERTTEXT(int pos, char *text)  SCI_CLEARALL  SCI_CLEARDOCUMENTSTYLE @@ -121,6 +122,10 @@ SCI_GETSTYLEBITS  	the SCI_CLEARDOCUMENTSTYLE can be used to clear all styling information and  	reset the folding state.      </p> +    <p> +	SCI_APPENDTEXT appends a string to the end of the document +	without changing the selection range. +    </p>  <pre>  SCI_SETTARGETSTART(int pos)  SCI_GETTARGETSTART @@ -1053,6 +1058,7 @@ SCI_MARKERDELETEHANDLE(int handle)  	Markers can be set to pixmaps using the SCI_MARKERDEFINEPIXMAP  	method. The XPM format is used for the pixmap and it is limited to  	to pixmaps that use one character per pixel. The data should be null terminated. +	Pixmaps use the SC_MARK_PIXMAP marker symbol.      </p>      <h3>         Indicators | 
