diff options
| author | nyamatongwe <unknown> | 2011-01-19 23:33:33 +1100 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2011-01-19 23:33:33 +1100 | 
| commit | fa5a3ac6d696f57a950a40b060b56bbe01c41a64 (patch) | |
| tree | 56d55947f25844382270ced0d906de5dd5f8b272 | |
| parent | 6c6edb42aef7d6b9e01a0e8dadfad607e33ed86f (diff) | |
| download | scintilla-mirror-fa5a3ac6d696f57a950a40b060b56bbe01c41a64.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 /> | 
