diff options
author | Neil <nyamatongwe@gmail.com> | 2022-03-15 15:14:42 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2022-03-15 15:14:42 +1100 |
commit | 23b2a54292964dc653d7ebb64c4b2a044eeaa8e7 (patch) | |
tree | fb9ccd4793daaa16b18551fd599b622f0ae96315 /include/Scintilla.iface | |
parent | 96480716cb3acc793436ce037650445a137115da (diff) | |
download | scintilla-mirror-23b2a54292964dc653d7ebb64c4b2a044eeaa8e7.tar.gz |
Feature [feature-requests:#1431] Add SCI_GETSTYLEINDEXAT API to return styles
over 127 as positive integers.
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r-- | include/Scintilla.iface | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 36d771402..7c20e9144 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -130,6 +130,9 @@ get position GetAnchor=2009(,) # Returns the style byte at the position. get int GetStyleAt=2010(position pos,) +# Returns the unsigned style byte at the position. +get int GetStyleIndexAt=2038(position pos,) + # Redoes the next action on the undo history. fun void Redo=2011(,) |