aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/ScintillaDoc.html
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2020-09-09 23:41:24 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2020-09-09 23:41:24 -0400
commit9ec5dc184d3095ea6c091ecd326e459c7caf2ca7 (patch)
tree5b0f8425f7aad7fe1d434812fe24be656d0cafce /doc/ScintillaDoc.html
parenta0b3f49afb6107c33582dc2c1fcace558c0d1f2c (diff)
downloadscintilla-mirror-9ec5dc184d3095ea6c091ecd326e459c7caf2ca7.tar.gz
Backport: Feature [feature-requests:1350]. Add SCI_GETMULTIEDGECOLUMN.
Backport of changeset 8507:e72e8cf58ea7.
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r--doc/ScintillaDoc.html7
1 files changed, 6 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>