diff options
| author | Derek Brown <unknown> | 2020-08-25 09:25:01 +1000 |
|---|---|---|
| committer | Derek Brown <unknown> | 2020-08-25 09:25:01 +1000 |
| commit | 2117f9e7b583e9093b6b297f8782027098320496 (patch) | |
| tree | c2620d71f81ebe7ace1007a7f78c8b1d28594cac /doc | |
| parent | 60504a3b1ab9c4777bfc3620538212d6ac5423af (diff) | |
| download | scintilla-mirror-2117f9e7b583e9093b6b297f8782027098320496.tar.gz | |
Feature [feature-requests:1350]. Add SCI_GETMULTIEDGECOLUMN.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/ScintillaDoc.html | 7 | ||||
| -rw-r--r-- | doc/ScintillaHistory.html | 5 |
2 files changed, 11 insertions, 1 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 6128a6aa6..d4bea6b60 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -6856,6 +6856,8 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){ <br /> <a class="message" href="#SCI_MULTIEDGEADDLINE">SCI_MULTIEDGEADDLINE(position column, colour edgeColour)</a><br /> <a class="message" href="#SCI_MULTIEDGECLEARALL">SCI_MULTIEDGECLEARALL</a><br /> + <a class="message" href="#SCI_GETMULTIEDGECOLUMN">SCI_GETMULTIEDGECOLUMN(int which)</a> + <br /> </code> <p><b id="SCI_SETEDGEMODE">SCI_SETEDGEMODE(int edgeMode)</b><br /> @@ -6933,10 +6935,13 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){ <p><b id="SCI_MULTIEDGEADDLINE">SCI_MULTIEDGEADDLINE(position column, <a class="jump" href="#colour">colour</a> edgeColour)</b><br /> <b id="SCI_MULTIEDGECLEARALL">SCI_MULTIEDGECLEARALL</b><br /> + <b id="SCI_GETMULTIEDGECOLUMN">SCI_GETMULTIEDGECOLUMN(int which)</b><br /> <code>SCI_MULTIEDGEADDLINE</code> adds a new vertical edge to the view. The edge will be displayed at the given column number. The resulting edge position depends on the metric of a space character in <code>STYLE_DEFAULT</code>. All the edges can be cleared with - <code>SCI_MULTIEDGECLEARALL</code>.</p> + <code>SCI_MULTIEDGECLEARALL</code>. <code>SCI_GETMULTIEDGECOLUMN</code> returns the column of the + Nth vertical edge (indexed from 0). If <code class="parameter">which</code> is greater or equal + to the number of vertical edges, this returns -1.</p> <h2 id="Accessibility">Accessibility</h2> diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index f5b952d0a..dc9311761 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -560,6 +560,7 @@ <td>Michel Sauvard</td> <td>uhf7</td> <td>gnombat</td> + <td>Derek Brown</td> </tr> </table> <p> @@ -624,6 +625,10 @@ caused continuing failures to find functions after the syntax error was corrected. <a href="https://sourceforge.net/p/scintilla/bugs/2176/">Bug #2176</a>. </li> + <li> + Added method for iterating through multiple vertical edges: SCI_GETMULTIEDGECOLUMN. + <a href="https://sourceforge.net/p/scintilla/feature-requests/1350/">Feature #1350</a>. + </li> </ul> <h3> <a href="https://www.scintilla.org/scite444.zip">Release 4.4.4</a> |
