diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ScintillaDoc.html | 7 | ||||
-rw-r--r-- | doc/ScintillaHistory.html | 6 |
2 files changed, 12 insertions, 1 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 1a07a4032..feab651ee 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -6801,6 +6801,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 /> @@ -6878,10 +6880,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 8ab756144..c0eb117a7 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -550,6 +550,8 @@ <td>Hugues Larrive</td> <td>Prakash Sahni</td> <td>uhf7</td> + </tr><tr> + <td>Derek Brown</td> </tr> </table> <p> @@ -597,6 +599,10 @@ Fixed bug where layout caching was ineffective. <a href="https://sourceforge.net/p/scintilla/bugs/2197/">Bug #2197</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://sourceforge.net/projects/scintilla/files/scintilla/3.21.0/scintilla3210.zip/download">Release 3.21.0</a> |