diff options
| -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 /> | 
