diff options
| author | nyamatongwe <devnull@localhost> | 2011-01-19 23:33:33 +1100 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2011-01-19 23:33:33 +1100 | 
| commit | abe86ee6314f2058139bfa5d1271d50873a89c04 (patch) | |
| tree | 3c401841dd8fe5435a3e1da6d810c4e96aeabe70 | |
| parent | f56384c3c7667ff9f603b8691c3ce8491aad71cf (diff) | |
| download | scintilla-mirror-abe86ee6314f2058139bfa5d1271d50873a89c04.tar.gz | |
Add SCI_SETMARGINCURSORN and SCI_GETMARGINCURSORN.
| -rw-r--r-- | doc/ScintillaDoc.html | 12 | 
1 files changed, 12 insertions, 0 deletions
| diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index cc1ec0d98..000112bef 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -2721,6 +2721,10 @@ struct Sci_TextToFind {      sensitive)</a><br />       <a class="message" href="#SCI_GETMARGINSENSITIVEN">SCI_GETMARGINSENSITIVEN(int      margin)</a><br /> +     <a class="message" href="#SCI_SETMARGINCURSORN">SCI_SETMARGINCURSORN(int margin, int +    cursor)</a><br /> +     <a class="message" href="#SCI_GETMARGINCURSORN">SCI_GETMARGINCURSORN(int +    margin)</a><br />       <a class="message" href="#SCI_SETMARGINLEFT">SCI_SETMARGINLEFT(<unused>, int      pixels)</a><br />       <a class="message" href="#SCI_GETMARGINLEFT">SCI_GETMARGINLEFT</a><br /> @@ -2798,6 +2802,14 @@ struct Sci_TextToFind {      selection margins which make it easy to select ranges of lines. By default, all margins are      insensitive.</p> +    <p><b id="SCI_SETMARGINCURSORN">SCI_SETMARGINCURSORN(int margin, int +    cursor)</b><br /> +     <b id="SCI_GETMARGINCURSORN">SCI_GETMARGINCURSORN(int margin)</b><br /> +     A reversed arrow cursor is normally shown over all margins. This may be changed to a normal arrow with +     <code>SCI_SETMARGINCURSORN(margin, SC_CURSORARROW)</code> or restored to a +     reversed arrow with +     <code>SCI_SETMARGINCURSORN(margin, SC_CURSORREVERSEARROW)</code>.</p> +      <p><b id="SCI_SETMARGINLEFT">SCI_SETMARGINLEFT(<unused>, int pixels)</b><br />       <b id="SCI_GETMARGINLEFT">SCI_GETMARGINLEFT</b><br />       <b id="SCI_SETMARGINRIGHT">SCI_SETMARGINRIGHT(<unused>, int pixels)</b><br /> | 
