diff options
-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 971a0324f..2a8fe708a 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -961,6 +961,7 @@ SCI_GETHIGHLIGHTGUIDE </h3> <pre> SCI_MARKERDEFINE(int markernumber, int markersymbols) +SCI_MARKERDEFINEPIXMAP(int markernumber, const char *xpm) SCI_MARKERSETFORE(int markernumber, int colour) SCI_MARKERSETBACK(int markernumber, int colour) SCI_MARKERADD(int line, int markernumber) @@ -1048,6 +1049,11 @@ SCI_MARKERDELETEHANDLE(int handle) commonly used as an argument to SCI_SETMARGINMASKN when defining a margin to be used for folding. </p> + <p> + 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. + </p> <h3> Indicators </h3> |