From 2117f9e7b583e9093b6b297f8782027098320496 Mon Sep 17 00:00:00 2001 From: Derek Brown Date: Tue, 25 Aug 2020 09:25:01 +1000 Subject: Feature [feature-requests:1350]. Add SCI_GETMULTIEDGECOLUMN. --- doc/ScintillaDoc.html | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'doc/ScintillaDoc.html') 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){
SCI_MULTIEDGEADDLINE(position column, colour edgeColour)
SCI_MULTIEDGECLEARALL
+ SCI_GETMULTIEDGECOLUMN(int which) +

SCI_SETEDGEMODE(int edgeMode)
@@ -6933,10 +6935,13 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){

SCI_MULTIEDGEADDLINE(position column, colour edgeColour)
SCI_MULTIEDGECLEARALL
+ SCI_GETMULTIEDGECOLUMN(int which)
SCI_MULTIEDGEADDLINE 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 STYLE_DEFAULT. All the edges can be cleared with - SCI_MULTIEDGECLEARALL.

+ SCI_MULTIEDGECLEARALL. SCI_GETMULTIEDGECOLUMN returns the column of the + Nth vertical edge (indexed from 0). If which is greater or equal + to the number of vertical edges, this returns -1.

Accessibility

-- cgit v1.2.3