Unit NppPlugin
Description
Core data types and definitions provided by the plugin interface
Overview
Classes, Interfaces, Objects and Records
| Name | Description |
|---|---|
Record TNotifyHeader |
Compatible with Windows' NMHDR |
Record TSciNotification |
|
Record TSciCharacterRange |
Range of a min and a max position – supports 64-bit |
Record TSciTextRange |
|
Record TSciTextRangeFull |
Range of a min and a max position with an output string |
Record TSciTextToFind |
|
Record TSciTextToFindFull |
Search range, text -> found position |
Record TSciRectangle |
|
Record TSciRangeToFormat |
|
Record TSciRangeToFormatFull |
Draw the document into a display context such as a printer |
Record TSessionInfo |
See NPPM_SAVESESSION |
Record TToolbarIcons |
See NPPM_ADDTOOLBARICON_DEPRECATED |
Record TTbIconsDarkMode |
See NPPM_ADDTOOLBARICON_FORDARKMODE
|
Record TCommunicationInfo |
See NPPM_MSGTOPLUGIN |
Packed Record TNppData |
|
Packed Record TShortcutKey |
|
Packed Record _TFuncItem |
|
Record TToolbarData |
See NPPM_DMMREGASDCKDLG |
Packed Record TDarkModeColors |
Contains the color values of the active dark mode theme |
Class TNppPlugin |
Default plugin implementation |
Types
Constants
Description
Types
nppChar = UnicodeChar ; |
|
This item has no description. |
nppPChar = PUnicodeChar ; |
|
This item has no description. |
nppString = UnicodeString ; |
|
This item has no description. |
PDarkModeColors = ˆTDarkModeColors; |
|
This item has no description. |
PFuncItem = ˆ_TFuncItem; |
|
This item has no description. |
PFUNCPLUGINCMD = procedure; cdecl; |
|
The generic type of a function defined by the plugin and callable by the host application |
PNPPData = ˆTNppData; |
|
This item has no description. |
PSciNotification = ˆTSciNotification; |
|
This item has no description. |
PSciTextRange = ˆTSciTextRange; |
|
This item has no description. |
PSciTextRangeFull = ˆTSciTextRangeFull; |
|
This item has no description. |
PSciTextToFind = ˆTSciTextToFind; |
|
This item has no description. |
PSciTextToFindFull = ˆTSciTextToFindFull; |
|
This item has no description. |
PShortcutKey = ˆTShortcutKey; |
|
This item has no description. |
PToolbarData = ˆTToolbarData; |
|
This item has no description. |
SciFnDirect = TScintillaMessageFnc; |
|
Type alias for TScintillaMessageFnc |
SciFnDirectStatus = function(ptr: sptr_t; Msg: Cardinal; wParam: uptr_t; lParam: sptr_t; pStatus: PInteger) : sptr_t; cdecl; |
|
Similar to TScintillaMessageFnc but a function of this type also returns the status to the caller through an integer pointer. This saves performing an extra call to retrieve the status in many situations so can be faster. |
Sci_Position = NativeInt; |
|
Basic signed type used throughout interface |
Sci_PositionU = NativeUInt; |
|
Unsigned variant used, for example, by ILexer::Lex |
sptr_t = NativeInt; |
|
A signed integer large enough to hold a pointer |
TExternalLexerAutoIndentMode = (...); |
|
Added in 8.3.3 Values
|
TMacroStatus = (...); |
|
Added in 8.3.3 Values
|
TNppLang = (...); |
|
This item has no description. Values
|
TPlatform = (...); |
|
Added in 7.3.2 Values
|
TSciApiLevel = (...); |
|
Scintilla API milestone versions
Values
|
TSciCharacterRangeFull = TSciCharacterRange; |
|
Type alias for TSciCharacterRange |
TScintillaMessageFnc = function(ptr : sptr_t; Msg: Cardinal; wParam: uptr_t; lParam : sptr_t) : sptr_t; cdecl; |
|
Function pointer through which a message can be sent directly to a Scintilla window. On Windows, the message-passing scheme used to communicate between the container and Scintilla is mediated by the operating system's SendMessage function and can lead to bad performance when calling intensively. To avoid this overhead, Scintilla provides messages that allow you to call the Scintilla message function directly. For example: unit ScintillaCall; {$assertions on} interface uses Messages, Windows; {$I 'Scintilla.inc'} // A wrapper to call Scintilla directly function Call(iMessage: Cardinal; wParam: uptr_t = 0; lParam: sptr_t = 0): sptr_t; implementation const WindowClassName = 'SciTEWindow'; ScintillaClassName = 'Scintilla'; var PSciMsg: TScintillaMessageFnc; PSciWndData: sptr_t; HScintilla: HWND; function Call(iMessage: Cardinal; wParam: uptr_t; lParam: sptr_t): sptr_t; begin Result := PSciMsg(PSciWndData, iMessage, wParam, lParam); end; function EnumChildProc(_hwnd: HWND; _lParam: LPARAM): LongBool; stdcall; begin HScintilla := FindWindowEx(_hwnd, 0, @ScintillaClassName[1], nil); Result := not (HScintilla > 0); end; initialization EnumChildWindows(FindWindow(@WindowClassName[1], nil), @EnumChildProc, 0); SetLastError(0); Assert(HScintilla > 0, 'Scintilla window could not be found!'); PSciMsg := SciFnDirect(SendMessage(HScintilla, SCI_GETDIRECTFUNCTION, 0, 0)); PSciWndData := SendMessage(HScintilla, SCI_GETDIRECTPOINTER, 0, 0); end.
|
TSciSurfaceID = Pointer; |
|
This item has no description. |
TToolBarStatusType = (...); |
|
Enumerates the available toolbar icon sets. Values
|
TWinVer = (...); |
|
This item has no description. Values
|
uptr_t = NativeUInt; |
|
An unsigned integer type large enough to hold a pointer |
Constants
ALL_OPEN_FILES = 0; |
|
This item has no description. |
ANNOTATION_BOXED = 2; |
|
This item has no description. |
ANNOTATION_HIDDEN = 0; |
|
This item has no description. |
ANNOTATION_INDENTED = 3; |
|
This item has no description. |
ANNOTATION_STANDARD = 1; |
|
This item has no description. |
CARETSTYLE_BLOCK = 2; |
|
This item has no description. |
CARETSTYLE_BLOCK_AFTER = $100; |
|
This item has no description. |
CARETSTYLE_CURSES = $20; |
|
This item has no description. |
CARETSTYLE_INS_MASK = $F; |
|
This item has no description. |
CARETSTYLE_INVISIBLE = 0; |
|
This item has no description. |
CARETSTYLE_LINE = 1; |
|
This item has no description. |
CARETSTYLE_OVERSTRIKE_BAR = 0; |
|
This item has no description. |
CARETSTYLE_OVERSTRIKE_BLOCK = $10; |
|
This item has no description. |
CARET_EVEN = $08; |
|
This item has no description. |
CARET_JUMPS = $10; |
|
This item has no description. |
CARET_SLOP = $01; |
|
This item has no description. |
CARET_STRICT = $04; |
|
This item has no description. |
CURRENT_COLUMN = 9; |
|
This item has no description. |
CURRENT_DIRECTORY = 2; |
|
This item has no description. |
CURRENT_LINE = 8; |
|
This item has no description. |
CURRENT_LINESTR = 12; |
|
This item has no description. |
CURRENT_WORD = 6; |
|
This item has no description. |
DEFAULT_SC_MOD_MASK =
SC_MOD_DELETETEXT or
SC_MOD_INSERTTEXT or
SC_PERFORMED_UNDO or
SC_PERFORMED_REDO or
SC_MOD_CHANGEINDICATOR
; |
|
This item has no description. |
dmfHandleChange: Cardinal = $0000000C; |
|
Standard flag for main parent usually used in NPPN_DARKMODECHANGED. |
dmfInit: Cardinal = $0000000B; |
|
Standard flag for main parent after its children are initialized. |
DOCSTATUS_BUFFERDIRTY = 2; |
|
This item has no description. |
DOCSTATUS_READONLY = 1; |
|
This item has no description. |
EDGE_BACKGROUND = 2; |
|
This item has no description. |
EDGE_LINE = 1; |
|
This item has no description. |
EDGE_MULTILINE = 3; |
|
This item has no description. |
EDGE_NONE = 0; |
|
This item has no description. |
EOLANNOTATION_ANGLES = $122; |
|
This item has no description. |
EOLANNOTATION_ANGLE_CIRCLE = $102; |
|
This item has no description. |
EOLANNOTATION_ANGLE_FLAT = $112; |
|
This item has no description. |
EOLANNOTATION_BOXED = 2; |
|
This item has no description. |
EOLANNOTATION_CIRCLE_ANGLE = $120; |
|
This item has no description. |
EOLANNOTATION_CIRCLE_FLAT = $110; |
|
This item has no description. |
EOLANNOTATION_FLATS = $111; |
|
This item has no description. |
EOLANNOTATION_FLAT_ANGLE = $121; |
|
This item has no description. |
EOLANNOTATION_FLAT_CIRCLE = $101; |
|
This item has no description. |
EOLANNOTATION_HIDDEN = 0; |
|
This item has no description. |
EOLANNOTATION_STADIUM = $100; |
|
This item has no description. |
EOLANNOTATION_STANDARD = 1; |
|
This item has no description. |
EXT_PART = 5; |
|
This item has no description. |
FILE_NAME = 3; |
|
This item has no description. |
FULL_CURRENT_PATH = 1; |
|
This item has no description. |
FuncItemNameLen = 64; |
|
This item has no description. |
GETFILENAMEATCURSOR = 11; |
|
This item has no description. |
INDICATOR_CONTAINER = 8; |
|
This item has no description. |
INDICATOR_HISTORY_MODIFIED_DELETION = 41; |
|
This item has no description. |
INDICATOR_HISTORY_MODIFIED_INSERTION = 40; |
|
This item has no description. |
INDICATOR_HISTORY_REVERTED_TO_MODIFIED_DELETION = 43; |
|
This item has no description. |
INDICATOR_HISTORY_REVERTED_TO_MODIFIED_INSERTION = 42; |
|
This item has no description. |
INDICATOR_HISTORY_REVERTED_TO_ORIGIN_DELETION = 37; |
|
This item has no description. |
INDICATOR_HISTORY_REVERTED_TO_ORIGIN_INSERTION = 36; |
|
This item has no description. |
INDICATOR_HISTORY_SAVED_DELETION = 39; |
|
This item has no description. |
INDICATOR_HISTORY_SAVED_INSERTION = 38; |
|
This item has no description. |
INDICATOR_IME = 32; |
|
This item has no description. |
INDICATOR_IME_MAX = 35; |
|
This item has no description. |
INDICATOR_MAX = 43; |
|
This item has no description. |
INDIC_BOX = 6; |
|
This item has no description. |
INDIC_COMPOSITIONTHICK = 14; |
|
This item has no description. |
INDIC_COMPOSITIONTHIN = 15; |
|
This item has no description. |
INDIC_CONTAINER = 8; |
|
This item has no description. |
INDIC_DASH = 9; |
|
This item has no description. |
INDIC_DIAGONAL = 3; |
|
This item has no description. |
INDIC_DOTBOX = 12; |
|
This item has no description. |
INDIC_DOTS = 10; |
|
This item has no description. |
INDIC_EXPLORERLINK = 23; |
|
This item has no description. |
INDIC_FULLBOX = 16; |
|
This item has no description. |
INDIC_GRADIENT = 20; |
|
This item has no description. |
INDIC_GRADIENTCENTRE = 21; |
|
This item has no description. |
INDIC_HIDDEN = 5; |
|
This item has no description. |
INDIC_IME = 32; |
|
This item has no description. |
INDIC_IME_MAX = 35; |
|
This item has no description. |
INDIC_MAX = 35; |
|
This item has no description. |
INDIC_PLAIN = 0; |
|
This item has no description. |
INDIC_POINT = 18; |
|
This item has no description. |
INDIC_POINTCHARACTER = 19; |
|
This item has no description. |
INDIC_POINT_TOP = 22; |
|
This item has no description. |
INDIC_ROUNDBOX = 7; |
|
This item has no description. |
INDIC_SQUIGGLE = 1; |
|
This item has no description. |
INDIC_SQUIGGLELOW = 11; |
|
This item has no description. |
INDIC_SQUIGGLEPIXMAP = 13; |
|
This item has no description. |
INDIC_STRAIGHTBOX = 8; |
|
This item has no description. |
INDIC_STRIKE = 4; |
|
This item has no description. |
INDIC_TEXTFORE = 17; |
|
This item has no description. |
INDIC_TT = 2; |
|
This item has no description. |
INVALID_POSITION = -1; |
|
This item has no description. |
KEYWORDSET_MAX = 30; |
|
This item has no description. |
LINENUMWIDTH_CONSTANT = 1; |
|
This item has no description. |
LINENUMWIDTH_DYNAMIC = 0; |
|
This item has no description. |
L_TXT = TNppLang.L_TEXT; |
|
This item has no description. |
MACRO_USER = (WM_USER + 4000); |
|
This item has no description. |
MAIN_VIEW = 0; |
|
This item has no description. |
MARKER_MAX = 31; |
|
This item has no description. |
MODELESSDIALOGADD = 0; |
|
This item has no description. |
MODELESSDIALOGREMOVE = 1; |
|
This item has no description. |
NAME_PART = 4; |
|
This item has no description. |
NPPMAINMENU = 1; |
|
This item has no description. |
NPPMSG = (WM_USER + 1000); |
|
This item has no description. |
NPPM_ACTIVATEDOC = (NPPMSG + 28); |
|
Parameters |
NPPM_ADDSCNMODIFIEDFLAGS = (NPPMSG + 117); |
|
Parameters
|
NPPM_ADDTOOLBARICON = NPPM_ADDTOOLBARICON_DEPRECATED deprecated; |
|
Warning: this symbol is deprecated. |
NPPM_ADDTOOLBARICON_DEPRECATED = (NPPMSG + 41); |
|
Parameters
|
NPPM_ADDTOOLBARICON_FORDARKMODE = (NPPMSG + 101); |
|
Parameters
|
NPPM_ALLOCATECMDID = (NPPMSG + 81); |
|
uses NppPlugin { , ... }; // ... var idBegin: IntPtr; isAllocatedSuccessful: LongBool; begin isAllocatedSuccessful := Self.SendNppMessage(NPPM_ALLOCATECMDID, 4, @idBegin); // ... end; If Parameters
|
NPPM_ALLOCATEINDICATOR = (NPPMSG + 113); |
|
uses NppPlugin { , ... }; // ... var idBegin: IntPtr; isAllocatedSuccessful: LongBool; begin isAllocatedSuccessful := Self.SendNppMessage(NPPM_ALLOCATEINDICATOR, 1, @idBegin); // ... end; If
Parameters
|
NPPM_ALLOCATEMARKER = (NPPMSG + 82); |
|
uses NppPlugin { , ... }; // ... var idBegin: IntPtr; isAllocatedSuccessful: LongBool; BEGIN isAllocatedSuccessful := Self.SendNppMessage(NPPM_ALLOCATEMARKER, 3, @idBegin); // ... END; If Parameters
|
NPPM_ALLOCATESUPPORTED = NPPM_ALLOCATESUPPORTED_DEPRECATED deprecated; |
|
Warning: this symbol is deprecated. |
NPPM_ALLOCATESUPPORTED_DEPRECATED = (NPPMSG + 80); |
|
true if NPPM_ALLOCATECMDID is supported
Parameters
|
NPPM_CREATELEXER = (NPPMSG + 110); |
|
Parameters
|
NPPM_CREATESCINTILLAHANDLE = (NPPMSG + 20); |
|
Parameters
|
NPPM_DARKMODESUBCLASSANDTHEME = (NPPMSG + 112); |
|
Parameters
|
NPPM_DECODESCI = (NPPMSG + 27); |
|
Parameters |
NPPM_DESTROYSCINTILLAHANDLE = NPPM_DESTROYSCINTILLAHANDLE_DEPRECATED deprecated; |
|
Warning: this symbol is deprecated. |
NPPM_DESTROYSCINTILLAHANDLE_DEPRECATED = (NPPMSG + 21); |
|
Parameters
|
NPPM_DISABLEAUTOUPDATE = (NPPMSG + 95); |
|
Parameters
|
NPPM_DMMGETPLUGINHWNDBYNAME = (NPPMSG + 43); |
|
Parameters
|
NPPM_DMMHIDE = (NPPMSG + 31); |
|
Parameters
|
NPPM_DMMREGASDCKDLG = (NPPMSG + 33); |
|
Parameters
|
NPPM_DMMSHOW = (NPPMSG + 30); |
|
Parameters
|
NPPM_DMMUPDATEDISPINFO = (NPPMSG + 32); |
|
Parameters
|
NPPM_DMMVIEWOTHERTAB = (NPPMSG + 35); |
|
Parameters
|
NPPM_DOCLISTDISABLEEXTCOLUMN = (NPPMSG + 89); |
|
Parameters
|
NPPM_DOCLISTDISABLEPATHCOLUMN = (NPPMSG + 102); |
|
Parameters
|
NPPM_DOOPEN = (NPPMSG + 77); |
|
Parameters
|
NPPM_ENCODESCI = (NPPMSG + 26); |
|
Parameters |
NPPM_GETAPPDATAPLUGINSALLOWED = (NPPMSG + 87); |
|
Parameters
|
NPPM_GETBOOKMARKID = (NPPMSG + 111); |
|
Parameters
|
NPPM_GETBUFFERENCODING = (NPPMSG + 66); |
|
Parameters
|
NPPM_GETBUFFERFORMAT = (NPPMSG + 68); |
|
Parameters
|
NPPM_GETBUFFERIDFROMPOS = (NPPMSG + 59); |
|
Parameters |
NPPM_GETBUFFERLANGTYPE = (NPPMSG + 64); |
|
Parameters
|
NPPM_GETCURRENTBUFFERID = (NPPMSG + 60); |
|
Parameters
|
NPPM_GETCURRENTCMDLINE = (NPPMSG + 109); |
|
Parameters
|
NPPM_GETCURRENTCOLUMN = (RUNCOMMAND_USER + CURRENT_COLUMN); |
|
Returns the caret's current position column. |
NPPM_GETCURRENTDIRECTORY = (RUNCOMMAND_USER + CURRENT_DIRECTORY); |
NPPM_GETCURRENTDOCINDEX = (NPPMSG + 23); |
|
Parameters |
NPPM_GETCURRENTLANGTYPE = (NPPMSG + 5); |
|
Parameters
|
NPPM_GETCURRENTLINE = (RUNCOMMAND_USER + CURRENT_LINE); |
|
Returns the caret's current position line. |
NPPM_GETCURRENTLINESTR = (RUNCOMMAND_USER + CURRENT_LINESTR); |
|
Parameters
|
NPPM_GETCURRENTMACROSTATUS = (NPPMSG + 106); |
|
Added in 8.3.3 Parameters
|
NPPM_GETCURRENTNATIVELANGENCODING = (NPPMSG + 79); |
|
Parameters
|
NPPM_GETCURRENTSCINTILLA = (NPPMSG + 4); |
|
Parameters |
NPPM_GETCURRENTVIEW = (NPPMSG + 88); |
|
Parameters
|
NPPM_GETCURRENTWORD = (RUNCOMMAND_USER + CURRENT_WORD); |
NPPM_GETDARKMODECOLORS = (NPPMSG + 108); |
|
Parameters
|
NPPM_GETEDITORDEFAULTBACKGROUNDCOLOR = (NPPMSG + 91); |
|
Parameters
|
NPPM_GETEDITORDEFAULTFOREGROUNDCOLOR = (NPPMSG + 90); |
|
Parameters
|
NPPM_GETENABLETHEMETEXTUREFUNC_DEPRECATED = (NPPMSG + 45); |
|
Parameters
|
NPPM_GETEXTERNALLEXERAUTOINDENTMODE = (NPPMSG + 103); |
|
Parameters
|
NPPM_GETEXTPART = (RUNCOMMAND_USER + EXT_PART); |
NPPM_GETFILENAME = (RUNCOMMAND_USER + FILE_NAME); |
NPPM_GETFILENAMEATCURSOR = (RUNCOMMAND_USER + GETFILENAMEATCURSOR); |
NPPM_GETFULLCURRENTPATH = (RUNCOMMAND_USER + FULL_CURRENT_PATH); |
NPPM_GETFULLPATHFROMBUFFERID = (NPPMSG + 58); |
|
Parameters
|
NPPM_GETLANGUAGEDESC = (NPPMSG + 84); |
|
Parameters
|
NPPM_GETLANGUAGENAME = (NPPMSG + 83); |
|
Parameters
|
NPPM_GETLINENUMBERWIDTHMODE = (NPPMSG + 100); |
|
Parameters
|
NPPM_GETMENUHANDLE = (NPPMSG + 25); |
|
Parameters
|
NPPM_GETNAMEPART = (RUNCOMMAND_USER + NAME_PART); |
NPPM_GETNATIVELANGFILENAME = (NPPMSG + 116); |
|
Parameters
|
NPPM_GETNBOPENFILES = (NPPMSG + 7); |
|
Parameters
|
NPPM_GETNBSESSIONFILES = (NPPMSG + 13); |
|
Parameters
|
NPPM_GETNBUSERLANG = (NPPMSG + 22); |
|
Parameters
|
NPPM_GETNPPDIRECTORY = (RUNCOMMAND_USER + NPP_DIRECTORY); |
NPPM_GETNPPFULLFILEPATH = (RUNCOMMAND_USER + NPP_FULL_FILE_PATH); |
NPPM_GETNPPSETTINGSDIRPATH = (NPPMSG + 119); |
|
Parameters
|
NPPM_GETNPPVERSION = (NPPMSG + 50); |
|
major_version_number := HIWORD(returned_value); // 1st digit of the version minor_version_number := LOWORD(returned_value); // last 3 digits of the version { Examples: ADD_ZERO_PADDING := True version | HIWORD | LOWORD ----------------------------- 8.9.6.4 | 8 | 964 9 | 9 | 0 6.9 | 6 | 900 6.6.6 | 6 | 660 13.6.6.6 | 13 | 666 ADD_ZERO_PADDING := False version | HIWORD | LOWORD ----------------------------- 8.9.6.4 | 8 | 964 9 | 9 | 0 6.9 | 6 | 9 6.6.6 | 6 | 66 13.6.6.6 | 13 | 666 } Parameters
|
NPPM_GETOPENFILENAMES = NPPM_GETOPENFILENAMES_DEPRECATED deprecated; |
|
Warning: this symbol is deprecated. |
NPPM_GETOPENFILENAMESPRIMARY = NPPM_GETOPENFILENAMESPRIMARY_DEPRECATED deprecated; |
|
Warning: this symbol is deprecated. |
NPPM_GETOPENFILENAMESPRIMARY_DEPRECATED = (NPPMSG + 17); |
|
Parameters
|
NPPM_GETOPENFILENAMESSECOND = NPPM_GETOPENFILENAMESSECOND_DEPRECATED deprecated; |
|
Warning: this symbol is deprecated. |
NPPM_GETOPENFILENAMESSECOND_DEPRECATED = (NPPMSG + 18); |
|
Parameters
|
NPPM_GETOPENFILENAMES_DEPRECATED = (NPPMSG + 8); |
|
Parameters
|
NPPM_GETPLUGINHOMEPATH = (NPPMSG + 97); |
|
Parameters
|
NPPM_GETPLUGINSCONFIGDIR = (NPPMSG + 46); |
|
Parameters
|
NPPM_GETPOSFROMBUFFERID = (NPPMSG + 57); |
|
Parameters
|
NPPM_GETSESSIONFILES = (NPPMSG + 14); |
|
Parameters
|
NPPM_GETSETTINGSONCLOUDPATH = (NPPMSG + 98); |
|
Parameters
|
NPPM_GETSHORTCUTBYCMDID = (NPPMSG + 76); |
|
Parameters
|
NPPM_GETTABCOLORID = (NPPMSG + 114); |
|
Added in 8.6.8 Parameters |
NPPM_GETTOOLBARICONSETCHOICE = (NPPMSG + 118); |
|
Parameters
|
NPPM_GETWINDOWSVERSION = (NPPMSG + 42); |
|
Parameters
|
NPPM_HIDEMENU = (NPPMSG + 72); |
|
Parameters
|
NPPM_HIDESTATUSBAR = (NPPMSG + 74); |
|
Parameters
|
NPPM_HIDETABBAR = (NPPMSG + 51); |
|
Parameters
|
NPPM_HIDETOOLBAR = (NPPMSG + 70); |
|
Parameters
|
NPPM_ISAUTOINDENTON = (NPPMSG + 105); |
|
Parameters
|
NPPM_ISDARKMODEENABLED = (NPPMSG + 107); |
|
Parameters
|
NPPM_ISDOCLISTSHOWN = (NPPMSG + 86); |
|
Parameters
|
NPPM_ISMENUHIDDEN = (NPPMSG + 73); |
|
Parameters
|
NPPM_ISSTATUSBARHIDDEN = (NPPMSG + 75); |
|
Parameters
|
NPPM_ISTABBARHIDDEN = (NPPMSG + 52); |
|
Parameters
|
NPPM_ISTOOLBARHIDDEN = (NPPMSG + 71); |
|
Parameters
|
NPPM_LAUNCHFINDINFILESDLG = (NPPMSG + 29); |
|
Parameters
|
NPPM_LOADSESSION = (NPPMSG + 34); |
|
Parameters
|
NPPM_MAKECURRENTBUFFERDIRTY = (NPPMSG + 44); |
|
Parameters
|
NPPM_MENUCOMMAND = (NPPMSG + 48); |
|
Parameters
|
NPPM_MODELESSDIALOG = (NPPMSG + 12); |
|
Parameters
|
NPPM_MSGTOPLUGIN = (NPPMSG + 47); |
|
Parameters
|
NPPM_RELOADBUFFERID = (NPPMSG + 61); |
|
Parameters
|
NPPM_RELOADFILE = (NPPMSG + 36); |
|
Parameters
|
NPPM_REMOVESHORTCUTBYCMDID = (NPPMSG + 96); |
|
Parameters
|
NPPM_SAVEALLFILES = (NPPMSG + 39); |
|
Parameters
|
NPPM_SAVECURRENTFILE = (NPPMSG + 38); |
|
Parameters
|
NPPM_SAVECURRENTFILEAS = (NPPMSG + 78); |
|
Parameters
|
NPPM_SAVECURRENTSESSION = (NPPMSG + 16); |
|
Parameters
|
NPPM_SAVEFILE = (NPPMSG + 94); |
|
Parameters
|
NPPM_SAVESESSION = (NPPMSG + 15); |
|
Parameters
|
NPPM_SETBUFFERENCODING = (NPPMSG + 67); |
|
Parameters
|
NPPM_SETBUFFERFORMAT = (NPPMSG + 69); |
|
Parameters
|
NPPM_SETBUFFERLANGTYPE = (NPPMSG + 65); |
|
Parameters
|
NPPM_SETCURRENTLANGTYPE = (NPPMSG + 6); |
|
Parameters
|
NPPM_SETEDITORBORDEREDGE = (NPPMSG + 93); |
|
Parameters
|
NPPM_SETEXTERNALLEXERAUTOINDENTMODE = (NPPMSG + 104); |
|
Parameters
|
NPPM_SETLINENUMBERWIDTHMODE = (NPPMSG + 99); |
|
true if successful, otherwise return false
Parameters
|
NPPM_SETMENUITEMCHECK = (NPPMSG + 40); |
|
Parameters
|
NPPM_SETSMOOTHFONT = (NPPMSG + 92); |
|
Parameters
|
NPPM_SETSTATUSBAR = (NPPMSG + 24); |
|
Parameters
|
NPPM_SETUNTITLEDNAME = (NPPMSG + 115); |
|
Parameters
|
NPPM_SHOWDOCLIST = (NPPMSG + 85); |
|
Parameters
|
NPPM_SWITCHTOFILE = (NPPMSG + 37); |
|
Parameters
|
NPPM_TRIGGERTABBARCONTEXTMENU = (NPPMSG + 49); |
|
Parameters |
NPPN_BEFORESHUTDOWN = (NPPN_FIRST + 19); |
|
To notify plugins that an application shutdown has been triggered; no files have been closed yet |
NPPN_BUFFERACTIVATED = (NPPN_FIRST + 10); |
|
To notify plugins that a buffer has been activated (i.e., put into the foreground) |
NPPN_CANCELSHUTDOWN = (NPPN_FIRST + 20); |
|
To notify plugins that an application shutdown has been cancelled |
NPPN_CMDLINEPLUGINMSG = (NPPN_FIRST + 28); |
|
To notify plugins that the command line argument Added in 8.4.2 |
NPPN_DARKMODECHANGED = (NPPN_FIRST + 27); |
|
To notify plugins that dark mode was enabled/disabled Added in 8.4.1 |
NPPN_DOCORDERCHANGED = (NPPN_FIRST + 17); |
|
To notify plugins that the document order has changed |
NPPN_EXTERNALLEXERBUFFER = (NPPN_FIRST + 29); |
|
To notify lexer plugins that the buffer (passed in Added in 8.5 |
NPPN_FILEBEFORECLOSE = (NPPN_FIRST + 3); |
|
To notify plugins that a file is about to be closed |
NPPN_FILEBEFOREDELETE = (NPPN_FIRST + 24); |
|
To notify plugins that a file is about to be deleted |
NPPN_FILEBEFORELOAD = (NPPN_FIRST + 14); |
|
To notify plugins that a file is about to be loaded
|
NPPN_FILEBEFOREOPEN = (NPPN_FIRST + 6); |
|
To notify plugins that a file is about to be opened |
NPPN_FILEBEFORERENAME = (NPPN_FIRST + 21); |
|
To notify plugins that a file is about to be renamed |
NPPN_FILEBEFORESAVE = (NPPN_FIRST + 7); |
|
To notify plugins that the current file is about to be saved |
NPPN_FILECLOSED = (NPPN_FIRST + 5); |
|
To notify plugins that a file was just closed |
NPPN_FILEDELETED = (NPPN_FIRST + 26); |
|
To notify plugins that a file has been deleted |
NPPN_FILEDELETEFAILED = (NPPN_FIRST + 25); |
|
To notify plugins that a file deletion has failed |
NPPN_FILELOADFAILED = (NPPN_FIRST + 15); |
|
To notify plugins that a file-open operation failed |
NPPN_FILEOPENED = (NPPN_FIRST + 4); |
|
To notify plugins that a file was just opened |
NPPN_FILERENAMECANCEL = (NPPN_FIRST + 22); |
|
To notify plugins that a file rename has been cancelled |
NPPN_FILERENAMED = (NPPN_FIRST + 23); |
|
To notify plugins that a file has been renamed |
NPPN_FILESAVED = (NPPN_FIRST + 8); |
|
To notify plugins that the current file was just saved |
NPPN_FIRST = 1000; |
|
This item has no description. |
NPPN_GLOBALMODIFIED = (NPPN_FIRST + 30); |
|
To notify plugins that the current document was just modified by the "Replace All" action Added in 8.6.5 |
NPPN_LANGCHANGED = (NPPN_FIRST + 11); |
|
To notify plugins that the programming language of the current document was just changed |
NPPN_NATIVELANGCHANGED = (NPPN_FIRST + 31); |
|
To notify plugins that the current native language has just changed to another one
Added in 8.7 |
NPPN_READONLYCHANGED = (NPPN_FIRST + 16); |
|
To notify plugins that the readonly status of the current document has changed |
NPPN_READY = (NPPN_FIRST + 1); |
|
To notify plugins that all of Notepad++'s initialization routines are complete |
NPPN_SHORTCUTSREMAPPED = (NPPN_FIRST + 13); |
|
To notify plugins that a plugin command shortcut was remapped |
NPPN_SHUTDOWN = (NPPN_FIRST + 9); |
|
To notify plugins that Notepad++ is about to shut down |
NPPN_SNAPSHOTDIRTYFILELOADED = (NPPN_FIRST + 18); |
|
To notify plugins that a dirty file snapshot was loaded on startup |
NPPN_TBMODIFICATION = (NPPN_FIRST + 2); |
|
To notify plugins that toolbar icons can be registered |
NPPN_TOOLBARICONSETCHANGED = (NPPN_FIRST + 32); |
|
To notify plugins that the toolbar icon set selection has changed
Added in 8.8.2 |
NPPN_WORDSTYLESUPDATED = (NPPN_FIRST + 12); |
|
To notify plugins that the user has made a change in the "Style Configurator" dialog |
NPPPLUGINMENU = 0; |
|
This item has no description. |
NPP_DIRECTORY = 7; |
|
This item has no description. |
NPP_FULL_FILE_PATH = 10; |
|
This item has no description. |
PRIMARY_VIEW = 1; |
|
This item has no description. |
RUNCOMMAND_USER = (WM_USER + 3000); |
|
This item has no description. |
SCEN_CHANGE = 768; |
|
This item has no description. |
SCEN_KILLFOCUS = 256; |
|
This item has no description. |
SCEN_SETFOCUS = 512; |
|
This item has no description. |
SCFIND_CXX11REGEX = $00800000; |
|
This item has no description. |
SCFIND_MATCHCASE = 4; |
|
This item has no description. |
SCFIND_NONE = 0; |
|
This item has no description. |
SCFIND_POSIX = $00400000; |
|
This item has no description. |
SCFIND_REGEXP = $00200000; |
|
This item has no description. |
SCFIND_WHOLEWORD = 2; |
|
This item has no description. |
SCFIND_WORDSTART = $00100000; |
|
This item has no description. |
SCINTILLA_USER = (WM_USER + 2000); |
|
This item has no description. |
SCI_ADDREFDOCUMENT = 2376; |
|
This item has no description. |
SCI_ADDSELECTION = 2573; |
|
This item has no description. |
SCI_ADDSTYLEDTEXT = 2002; |
|
This item has no description. |
SCI_ADDTABSTOP = 2676; |
|
This item has no description. |
SCI_ADDTEXT = 2001; |
|
This item has no description. |
SCI_ADDUNDOACTION = 2560; |
|
This item has no description. |
SCI_ALLOCATE = 2446; |
|
This item has no description. |
SCI_ALLOCATEEXTENDEDSTYLES = 2553; |
|
This item has no description. |
SCI_ALLOCATELINECHARACTERINDEX = 2711; |
|
This item has no description. |
SCI_ALLOCATELINES = 2089; |
|
This item has no description. |
SCI_ALLOCATESUBSTYLES = 4020; |
|
This item has no description. |
SCI_ANNOTATIONCLEARALL = 2547; |
|
This item has no description. |
SCI_ANNOTATIONGETLINES = 2546; |
|
This item has no description. |
SCI_ANNOTATIONGETSTYLE = 2543; |
|
This item has no description. |
SCI_ANNOTATIONGETSTYLEOFFSET = 2551; |
|
This item has no description. |
SCI_ANNOTATIONGETSTYLES = 2545; |
|
This item has no description. |
SCI_ANNOTATIONGETTEXT = 2541; |
|
This item has no description. |
SCI_ANNOTATIONGETVISIBLE = 2549; |
|
This item has no description. |
SCI_ANNOTATIONSETSTYLE = 2542; |
|
This item has no description. |
SCI_ANNOTATIONSETSTYLEOFFSET = 2550; |
|
This item has no description. |
SCI_ANNOTATIONSETSTYLES = 2544; |
|
This item has no description. |
SCI_ANNOTATIONSETTEXT = 2540; |
|
This item has no description. |
SCI_ANNOTATIONSETVISIBLE = 2548; |
|
This item has no description. |
SCI_APPENDTEXT = 2282; |
|
This item has no description. |
SCI_ASSIGNCMDKEY = 2070; |
|
This item has no description. |
SCI_AUTOCACTIVE = 2102; |
|
This item has no description. |
SCI_AUTOCCANCEL = 2101; |
|
This item has no description. |
SCI_AUTOCCOMPLETE = 2104; |
|
This item has no description. |
SCI_AUTOCGETAUTOHIDE = 2119; |
|
This item has no description. |
SCI_AUTOCGETCANCELATSTART = 2111; |
|
This item has no description. |
SCI_AUTOCGETCASEINSENSITIVEBEHAVIOUR = 2635; |
|
This item has no description. |
SCI_AUTOCGETCHOOSESINGLE = 2114; |
|
This item has no description. |
SCI_AUTOCGETCURRENT = 2445; |
|
This item has no description. |
SCI_AUTOCGETCURRENTTEXT = 2610; |
|
This item has no description. |
SCI_AUTOCGETDROPRESTOFWORD = 2271; |
|
This item has no description. |
SCI_AUTOCGETIGNORECASE = 2116; |
|
This item has no description. |
SCI_AUTOCGETIMAGESCALE = 2816; |
|
This item has no description. |
SCI_AUTOCGETMAXHEIGHT = 2211; |
|
This item has no description. |
SCI_AUTOCGETMAXWIDTH = 2209; |
|
This item has no description. |
SCI_AUTOCGETMULTI = 2637; |
|
This item has no description. |
SCI_AUTOCGETOPTIONS = 2639; |
|
This item has no description. |
SCI_AUTOCGETORDER = 2661; |
|
This item has no description. |
SCI_AUTOCGETSEPARATOR = 2107; |
|
This item has no description. |
SCI_AUTOCGETSTYLE = 2120; |
|
This item has no description. |
SCI_AUTOCGETTYPESEPARATOR = 2285; |
|
This item has no description. |
SCI_AUTOCPOSSTART = 2103; |
|
This item has no description. |
SCI_AUTOCSELECT = 2108; |
|
This item has no description. |
SCI_AUTOCSETAUTOHIDE = 2118; |
|
This item has no description. |
SCI_AUTOCSETCANCELATSTART = 2110; |
|
This item has no description. |
SCI_AUTOCSETCASEINSENSITIVEBEHAVIOUR = 2634; |
|
This item has no description. |
SCI_AUTOCSETCHOOSESINGLE = 2113; |
|
This item has no description. |
SCI_AUTOCSETDROPRESTOFWORD = 2270; |
|
This item has no description. |
SCI_AUTOCSETFILLUPS = 2112; |
|
This item has no description. |
SCI_AUTOCSETIGNORECASE = 2115; |
|
This item has no description. |
SCI_AUTOCSETIMAGESCALE = 2815; |
|
This item has no description. |
SCI_AUTOCSETMAXHEIGHT = 2210; |
|
This item has no description. |
SCI_AUTOCSETMAXWIDTH = 2208; |
|
This item has no description. |
SCI_AUTOCSETMULTI = 2636; |
|
This item has no description. |
SCI_AUTOCSETOPTIONS = 2638; |
|
This item has no description. |
SCI_AUTOCSETORDER = 2660; |
|
This item has no description. |
SCI_AUTOCSETSEPARATOR = 2106; |
|
This item has no description. |
SCI_AUTOCSETSTYLE = 2109; |
|
This item has no description. |
SCI_AUTOCSETTYPESEPARATOR = 2286; |
|
This item has no description. |
SCI_AUTOCSHOW = 2100; |
|
This item has no description. |
SCI_AUTOCSTOPS = 2105; |
|
This item has no description. |
SCI_BACKTAB = 2328; |
|
This item has no description. |
SCI_BEGINUNDOACTION = 2078; |
|
This item has no description. |
SCI_BRACEBADLIGHT = 2352; |
|
This item has no description. |
SCI_BRACEBADLIGHTINDICATOR = 2499; |
|
This item has no description. |
SCI_BRACEHIGHLIGHT = 2351; |
|
This item has no description. |
SCI_BRACEHIGHLIGHTINDICATOR = 2498; |
|
This item has no description. |
SCI_BRACEMATCH = 2353; |
|
This item has no description. |
SCI_BRACEMATCHNEXT = 2369; |
|
This item has no description. |
SCI_CALLTIPACTIVE = 2202; |
|
This item has no description. |
SCI_CALLTIPCANCEL = 2201; |
|
This item has no description. |
SCI_CALLTIPPOSSTART = 2203; |
|
This item has no description. |
SCI_CALLTIPSETBACK = 2205; |
|
This item has no description. |
SCI_CALLTIPSETFORE = 2206; |
|
This item has no description. |
SCI_CALLTIPSETFOREHLT = 2207; |
|
This item has no description. |
SCI_CALLTIPSETHLT = 2204; |
|
This item has no description. |
SCI_CALLTIPSETPOSITION = 2213; |
|
This item has no description. |
SCI_CALLTIPSETPOSSTART = 2214; |
|
This item has no description. |
SCI_CALLTIPSHOW = 2200; |
|
This item has no description. |
SCI_CALLTIPUSESTYLE = 2212; |
|
This item has no description. |
SCI_CANCEL = 2325; |
|
This item has no description. |
SCI_CANPASTE = 2173; |
|
This item has no description. |
SCI_CANREDO = 2016; |
|
This item has no description. |
SCI_CANUNDO = 2174; |
|
This item has no description. |
SCI_CHANGEINSERTION = 2672; |
|
This item has no description. |
SCI_CHANGELEXERSTATE = 2617; |
|
This item has no description. |
SCI_CHANGESELECTIONMODE = 2659; |
|
This item has no description. |
SCI_CHARLEFT = 2304; |
|
This item has no description. |
SCI_CHARLEFTEXTEND = 2305; |
|
This item has no description. |
SCI_CHARLEFTRECTEXTEND = 2428; |
|
This item has no description. |
SCI_CHARPOSITIONFROMPOINT = 2561; |
|
This item has no description. |
SCI_CHARPOSITIONFROMPOINTCLOSE = 2562; |
|
This item has no description. |
SCI_CHARRIGHT = 2306; |
|
This item has no description. |
SCI_CHARRIGHTEXTEND = 2307; |
|
This item has no description. |
SCI_CHARRIGHTRECTEXTEND = 2429; |
|
This item has no description. |
SCI_CHOOSECARETX = 2399; |
|
This item has no description. |
SCI_CLEAR = 2180; |
|
This item has no description. |
SCI_CLEARALL = 2004; |
|
This item has no description. |
SCI_CLEARALLCMDKEYS = 2072; |
|
This item has no description. |
SCI_CLEARALLREPRESENTATIONS = 2770; |
|
This item has no description. |
SCI_CLEARCMDKEY = 2071; |
|
This item has no description. |
SCI_CLEARDOCUMENTSTYLE = 2005; |
|
This item has no description. |
SCI_CLEARREGISTEREDIMAGES = 2408; |
|
This item has no description. |
SCI_CLEARREPRESENTATION = 2667; |
|
This item has no description. |
SCI_CLEARSELECTIONS = 2571; |
|
This item has no description. |
SCI_CLEARTABSTOPS = 2675; |
|
This item has no description. |
SCI_COLOURISE = 4003; |
|
This item has no description. |
SCI_CONTRACTEDFOLDNEXT = 2618; |
|
This item has no description. |
SCI_CONVERTEOLS = 2029; |
|
This item has no description. |
SCI_COPY = 2178; |
|
This item has no description. |
SCI_COPYALLOWLINE = 2519; |
|
This item has no description. |
SCI_COPYRANGE = 2419; |
|
This item has no description. |
SCI_COPYTEXT = 2420; |
|
This item has no description. |
SCI_COUNTCHARACTERS = 2633; |
|
This item has no description. |
SCI_COUNTCODEUNITS = 2715; |
|
This item has no description. |
SCI_CREATEDOCUMENT = 2375; |
|
This item has no description. |
SCI_CREATELOADER = 2632; |
|
This item has no description. |
SCI_CUT = 2177; |
|
This item has no description. |
SCI_CUTALLOWLINE = 2810; |
|
This item has no description. |
SCI_DELETEBACK = 2326; |
|
This item has no description. |
SCI_DELETEBACKNOTLINE = 2344; |
|
This item has no description. |
SCI_DELETERANGE = 2645; |
|
This item has no description. |
SCI_DELLINELEFT = 2395; |
|
This item has no description. |
SCI_DELLINERIGHT = 2396; |
|
This item has no description. |
SCI_DELWORDLEFT = 2335; |
|
This item has no description. |
SCI_DELWORDRIGHT = 2336; |
|
This item has no description. |
SCI_DELWORDRIGHTEND = 2518; |
|
This item has no description. |
SCI_DESCRIBEKEYWORDSETS = 4017; |
|
This item has no description. |
SCI_DESCRIBEPROPERTY = 4016; |
|
This item has no description. |
SCI_DESCRIPTIONOFSTYLE = 4032; |
|
This item has no description. |
SCI_DISTANCETOSECONDARYSTYLES = 4025; |
|
This item has no description. |
SCI_DOCLINEFROMVISIBLE = 2221; |
|
This item has no description. |
SCI_DOCUMENTEND = 2318; |
|
This item has no description. |
SCI_DOCUMENTENDEXTEND = 2319; |
|
This item has no description. |
SCI_DOCUMENTSTART = 2316; |
|
This item has no description. |
SCI_DOCUMENTSTARTEXTEND = 2317; |
|
This item has no description. |
SCI_DROPSELECTIONN = 2671; |
|
This item has no description. |
SCI_EDITTOGGLEOVERTYPE = 2324; |
|
This item has no description. |
SCI_EMPTYUNDOBUFFER = 2175; |
|
This item has no description. |
SCI_ENCODEDFROMUTF8 = 2449; |
|
This item has no description. |
SCI_ENDUNDOACTION = 2079; |
|
This item has no description. |
SCI_ENSUREVISIBLE = 2232; |
|
This item has no description. |
SCI_ENSUREVISIBLEENFORCEPOLICY = 2234; |
|
This item has no description. |
SCI_EOLANNOTATIONCLEARALL = 2744; |
|
This item has no description. |
SCI_EOLANNOTATIONGETSTYLE = 2743; |
|
This item has no description. |
SCI_EOLANNOTATIONGETSTYLEOFFSET = 2748; |
|
This item has no description. |
SCI_EOLANNOTATIONGETTEXT = 2741; |
|
This item has no description. |
SCI_EOLANNOTATIONGETVISIBLE = 2746; |
|
This item has no description. |
SCI_EOLANNOTATIONSETSTYLE = 2742; |
|
This item has no description. |
SCI_EOLANNOTATIONSETSTYLEOFFSET = 2747; |
|
This item has no description. |
SCI_EOLANNOTATIONSETTEXT = 2740; |
|
This item has no description. |
SCI_EOLANNOTATIONSETVISIBLE = 2745; |
|
This item has no description. |
SCI_EXPANDCHILDREN = 2239; |
|
This item has no description. |
SCI_FINDCOLUMN = 2456; |
|
This item has no description. |
SCI_FINDINDICATORFLASH = 2641; |
|
This item has no description. |
SCI_FINDINDICATORHIDE = 2642; |
|
This item has no description. |
SCI_FINDINDICATORSHOW = 2640; |
|
This item has no description. |
SCI_FINDTEXT = 2150 deprecated 'Use SCI_FINDTEXTFULL instead'; |
|
Warning: this symbol is deprecated: Use SCI_FINDTEXTFULL instead This item has no description. |
SCI_FINDTEXTFULL = 2196; |
|
This item has no description. |
SCI_FOLDALL = 2662; |
|
This item has no description. |
SCI_FOLDCHILDREN = 2238; |
|
This item has no description. |
SCI_FOLDDISPLAYTEXTGETSTYLE = 2707; |
|
This item has no description. |
SCI_FOLDDISPLAYTEXTSETSTYLE = 2701; |
|
This item has no description. |
SCI_FOLDLINE = 2237; |
|
This item has no description. |
SCI_FORMATRANGE = 2151 deprecated 'Use SCI_FORMATRANGEFULL instead'; |
|
Warning: this symbol is deprecated: Use SCI_FORMATRANGEFULL instead This item has no description. |
SCI_FORMATRANGEFULL = 2777; |
|
This item has no description. |
SCI_FORMFEED = 2330; |
|
This item has no description. |
SCI_FREESUBSTYLES = 4023; |
|
This item has no description. |
SCI_GETACCESSIBILITY = 2703; |
|
This item has no description. |
SCI_GETADDITIONALCARETFORE = 2605; |
|
This item has no description. |
SCI_GETADDITIONALCARETSBLINK = 2568; |
|
This item has no description. |
SCI_GETADDITIONALCARETSVISIBLE = 2609; |
|
This item has no description. |
SCI_GETADDITIONALSELALPHA = 2603; |
|
This item has no description. |
SCI_GETADDITIONALSELECTIONTYPING = 2566; |
|
This item has no description. |
SCI_GETALLLINESVISIBLE = 2236; |
|
This item has no description. |
SCI_GETANCHOR = 2009; |
|
This item has no description. |
SCI_GETAUTOMATICFOLD = 2664; |
|
This item has no description. |
SCI_GETBACKSPACEUNINDENTS = 2263; |
|
This item has no description. |
SCI_GETBOOSTREGEXERRMSG = 5000; |
|
This item has no description. |
SCI_GETBUFFEREDDRAW = 2034; |
|
This item has no description. |
SCI_GETCARETFORE = 2138; |
|
This item has no description. |
SCI_GETCARETLINEBACK = 2097; |
|
This item has no description. |
SCI_GETCARETLINEBACKALPHA = 2471; |
|
This item has no description. |
SCI_GETCARETLINEFRAME = 2704; |
|
This item has no description. |
SCI_GETCARETLINEHIGHLIGHTSUBLINE = 2773; |
|
This item has no description. |
SCI_GETCARETLINELAYER = 2764; |
|
This item has no description. |
SCI_GETCARETLINEVISIBLE = 2095; |
|
This item has no description. |
SCI_GETCARETLINEVISIBLEALWAYS = 2654; |
|
This item has no description. |
SCI_GETCARETPERIOD = 2075; |
|
This item has no description. |
SCI_GETCARETSTICKY = 2457; |
|
This item has no description. |
SCI_GETCARETSTYLE = 2513; |
|
This item has no description. |
SCI_GETCARETWIDTH = 2189; |
|
This item has no description. |
SCI_GETCHANGEHISTORY = 2781; |
|
This item has no description. |
SCI_GETCHARACTERCATEGORYOPTIMIZATION = 2721; |
|
This item has no description. |
SCI_GETCHARACTERPOINTER = 2520; |
|
This item has no description. |
SCI_GETCHARAT = 2007; |
|
This item has no description. |
SCI_GETCODEPAGE = 2137; |
|
This item has no description. |
SCI_GETCOLUMN = 2129; |
|
This item has no description. |
SCI_GETCOMMANDEVENTS = 2718; |
|
This item has no description. |
SCI_GETCONTROLCHARSYMBOL = 2389; |
|
This item has no description. |
SCI_GETCOPYSEPARATOR = 2812; |
|
This item has no description. |
SCI_GETCURLINE = 2027; |
|
This item has no description. |
SCI_GETCURRENTPOS = 2008; |
|
This item has no description. |
SCI_GETCURSOR = 2387; |
|
This item has no description. |
SCI_GETDEFAULTFOLDDISPLAYTEXT = 2723; |
|
This item has no description. |
SCI_GETDIRECTFUNCTION = 2184; |
|
This item has no description. |
SCI_GETDIRECTPOINTER = 2185; |
|
This item has no description. |
SCI_GETDIRECTSTATUSFUNCTION = 2772; |
|
This item has no description. |
SCI_GETDOCPOINTER = 2357; |
|
This item has no description. |
SCI_GETDOCUMENTOPTIONS = 2379; |
|
This item has no description. |
SCI_GETEDGECOLOUR = 2364; |
|
This item has no description. |
SCI_GETEDGECOLUMN = 2360; |
|
This item has no description. |
SCI_GETEDGEMODE = 2362; |
|
This item has no description. |
SCI_GETELEMENTALLOWSTRANSLUCENT = 2757; |
|
This item has no description. |
SCI_GETELEMENTBASECOLOUR = 2758; |
|
This item has no description. |
SCI_GETELEMENTCOLOUR = 2754; |
|
This item has no description. |
SCI_GETELEMENTISSET = 2756; |
|
This item has no description. |
SCI_GETENDATLASTLINE = 2278; |
|
This item has no description. |
SCI_GETENDSTYLED = 2028; |
|
This item has no description. |
SCI_GETEOLMODE = 2030; |
|
This item has no description. |
SCI_GETEXTRAASCENT = 2526; |
|
This item has no description. |
SCI_GETEXTRADESCENT = 2528; |
|
This item has no description. |
SCI_GETFIRSTVISIBLELINE = 2152; |
|
This item has no description. |
SCI_GETFOCUS = 2381; |
|
This item has no description. |
SCI_GETFOLDEXPANDED = 2230; |
|
This item has no description. |
SCI_GETFOLDLEVEL = 2223; |
|
This item has no description. |
SCI_GETFOLDPARENT = 2225; |
|
This item has no description. |
SCI_GETFONTLOCALE = 2761; |
|
This item has no description. |
SCI_GETFONTQUALITY = 2612; |
|
This item has no description. |
SCI_GETGAPPOSITION = 2644; |
|
This item has no description. |
SCI_GETHIGHLIGHTGUIDE = 2135; |
|
This item has no description. |
SCI_GETHOTSPOTACTIVEBACK = 2495; |
|
This item has no description. |
SCI_GETHOTSPOTACTIVEFORE = 2494; |
|
This item has no description. |
SCI_GETHOTSPOTACTIVEUNDERLINE = 2496; |
|
This item has no description. |
SCI_GETHOTSPOTSINGLELINE = 2497; |
|
This item has no description. |
SCI_GETHSCROLLBAR = 2131; |
|
This item has no description. |
SCI_GETIDENTIFIER = 2623; |
|
This item has no description. |
SCI_GETIDLESTYLING = 2693; |
|
This item has no description. |
SCI_GETIMEINTERACTION = 2678; |
|
This item has no description. |
SCI_GETINDENT = 2123; |
|
This item has no description. |
SCI_GETINDENTATIONGUIDES = 2133; |
|
This item has no description. |
SCI_GETINDICATORCURRENT = 2501; |
|
This item has no description. |
SCI_GETINDICATORVALUE = 2503; |
|
This item has no description. |
SCI_GETLASTCHILD = 2224; |
|
This item has no description. |
SCI_GETLAYOUTCACHE = 2273; |
|
This item has no description. |
SCI_GETLAYOUTTHREADS = 2776; |
|
This item has no description. |
SCI_GETLENGTH = 2006; |
|
This item has no description. |
SCI_GETLEXER = 4002; |
|
This item has no description. |
SCI_GETLEXERLANGUAGE = 4012; |
|
This item has no description. |
SCI_GETLINE = 2153; |
|
This item has no description. |
SCI_GETLINECHARACTERINDEX = 2710; |
|
This item has no description. |
SCI_GETLINECOUNT = 2154; |
|
This item has no description. |
SCI_GETLINEENDPOSITION = 2136; |
|
This item has no description. |
SCI_GETLINEENDTYPESACTIVE = 2658; |
|
This item has no description. |
SCI_GETLINEENDTYPESALLOWED = 2657; |
|
This item has no description. |
SCI_GETLINEENDTYPESSUPPORTED = 4018; |
|
This item has no description. |
SCI_GETLINEINDENTATION = 2127; |
|
This item has no description. |
SCI_GETLINEINDENTPOSITION = 2128; |
|
This item has no description. |
SCI_GETLINESELENDPOSITION = 2425; |
|
This item has no description. |
SCI_GETLINESELSTARTPOSITION = 2424; |
|
This item has no description. |
SCI_GETLINESTATE = 2093; |
|
This item has no description. |
SCI_GETLINEVISIBLE = 2228; |
|
This item has no description. |
SCI_GETMAINSELECTION = 2575; |
|
This item has no description. |
SCI_GETMARGINBACKN = 2251; |
|
This item has no description. |
SCI_GETMARGINCURSORN = 2249; |
|
This item has no description. |
SCI_GETMARGINLEFT = 2156; |
|
This item has no description. |
SCI_GETMARGINMASKN = 2245; |
|
This item has no description. |
SCI_GETMARGINOPTIONS = 2557; |
|
This item has no description. |
SCI_GETMARGINRIGHT = 2158; |
|
This item has no description. |
SCI_GETMARGINS = 2253; |
|
This item has no description. |
SCI_GETMARGINSENSITIVEN = 2247; |
|
This item has no description. |
SCI_GETMARGINTYPEN = 2241; |
|
This item has no description. |
SCI_GETMARGINWIDTHN = 2243; |
|
This item has no description. |
SCI_GETMAXLINESTATE = 2094; |
|
This item has no description. |
SCI_GETMODEVENTMASK = 2378; |
|
This item has no description. |
SCI_GETMODIFY = 2159; |
|
This item has no description. |
SCI_GETMOUSEDOWNCAPTURES = 2385; |
|
This item has no description. |
SCI_GETMOUSEDWELLTIME = 2265; |
|
This item has no description. |
SCI_GETMOUSESELECTIONRECTANGULARSWITCH = 2669; |
|
This item has no description. |
SCI_GETMOUSEWHEELCAPTURES = 2697; |
|
This item has no description. |
SCI_GETMOVEEXTENDSSELECTION = 2706; |
|
This item has no description. |
SCI_GETMULTIEDGECOLUMN = 2749; |
|
This item has no description. |
SCI_GETMULTIPASTE = 2615; |
|
This item has no description. |
SCI_GETMULTIPLESELECTION = 2564; |
|
This item has no description. |
SCI_GETNAMEDSTYLES = 4029; |
|
This item has no description. |
SCI_GETNEXTTABSTOP = 2677; |
|
This item has no description. |
SCI_GETOVERTYPE = 2187; |
|
This item has no description. |
SCI_GETPASTECONVERTENDINGS = 2468; |
|
This item has no description. |
SCI_GETPHASESDRAW = 2673; |
|
This item has no description. |
SCI_GETPOSITIONCACHE = 2515; |
|
This item has no description. |
SCI_GETPRIMARYSTYLEFROMSTYLE = 4028; |
|
This item has no description. |
SCI_GETPRINTCOLOURMODE = 2149; |
|
This item has no description. |
SCI_GETPRINTMAGNIFICATION = 2147; |
|
This item has no description. |
SCI_GETPRINTWRAPMODE = 2407; |
|
This item has no description. |
SCI_GETPROPERTY = 4008; |
|
This item has no description. |
SCI_GETPROPERTYEXPANDED = 4009; |
|
This item has no description. |
SCI_GETPROPERTYINT = 4010; |
|
This item has no description. |
SCI_GETPUNCTUATIONCHARS = 2649; |
|
This item has no description. |
SCI_GETRANGEPOINTER = 2643; |
|
This item has no description. |
SCI_GETREADONLY = 2140; |
|
This item has no description. |
SCI_GETRECTANGULARSELECTIONANCHOR = 2591; |
|
This item has no description. |
SCI_GETRECTANGULARSELECTIONANCHORVIRTUALSPACE = 2595; |
|
This item has no description. |
SCI_GETRECTANGULARSELECTIONCARET = 2589; |
|
This item has no description. |
SCI_GETRECTANGULARSELECTIONCARETVIRTUALSPACE = 2593; |
|
This item has no description. |
SCI_GETRECTANGULARSELECTIONMODIFIER = 2599; |
|
This item has no description. |
SCI_GETREPRESENTATION = 2666; |
|
This item has no description. |
SCI_GETREPRESENTATIONAPPEARANCE = 2767; |
|
This item has no description. |
SCI_GETREPRESENTATIONCOLOUR = 2769; |
|
This item has no description. |
SCI_GETSCROLLWIDTH = 2275; |
|
This item has no description. |
SCI_GETSCROLLWIDTHTRACKING = 2517; |
|
This item has no description. |
SCI_GETSEARCHFLAGS = 2199; |
|
This item has no description. |
SCI_GETSELALPHA = 2477; |
|
This item has no description. |
SCI_GETSELECTIONEMPTY = 2650; |
|
This item has no description. |
SCI_GETSELECTIONEND = 2145; |
|
This item has no description. |
SCI_GETSELECTIONHIDDEN = 2088; |
|
This item has no description. |
SCI_GETSELECTIONLAYER = 2762; |
|
This item has no description. |
SCI_GETSELECTIONMODE = 2423; |
|
This item has no description. |
SCI_GETSELECTIONNANCHOR = 2579; |
|
This item has no description. |
SCI_GETSELECTIONNANCHORVIRTUALSPACE = 2583; |
|
This item has no description. |
SCI_GETSELECTIONNCARET = 2577; |
|
This item has no description. |
SCI_GETSELECTIONNCARETVIRTUALSPACE = 2581; |
|
This item has no description. |
SCI_GETSELECTIONNEND = 2587; |
|
This item has no description. |
SCI_GETSELECTIONNENDVIRTUALSPACE = 2727; |
|
This item has no description. |
SCI_GETSELECTIONNSTART = 2585; |
|
This item has no description. |
SCI_GETSELECTIONNSTARTVIRTUALSPACE = 2726; |
|
This item has no description. |
SCI_GETSELECTIONS = 2570; |
|
This item has no description. |
SCI_GETSELECTIONSERIALIZED = 2785; |
|
This item has no description. |
SCI_GETSELECTIONSTART = 2143; |
|
This item has no description. |
SCI_GETSELEOLFILLED = 2479; |
|
This item has no description. |
SCI_GETSELTEXT = 2161; |
|
This item has no description. |
SCI_GETSTATUS = 2383; |
|
This item has no description. |
SCI_GETSTYLEAT = 2010; |
|
This item has no description. |
SCI_GETSTYLEDTEXT = 2015 deprecated 'Use SCI_GETSTYLEDTEXTFULL instead'; |
|
Warning: this symbol is deprecated: Use SCI_GETSTYLEDTEXTFULL instead This item has no description. |
SCI_GETSTYLEDTEXTFULL = 2778; |
|
This item has no description. |
SCI_GETSTYLEFROMSUBSTYLE = 4027; |
|
This item has no description. |
SCI_GETSTYLEINDEXAT = 2038; |
|
This item has no description. |
SCI_GETSUBSTYLEBASES = 4026; |
|
This item has no description. |
SCI_GETSUBSTYLESLENGTH = 4022; |
|
This item has no description. |
SCI_GETSUBSTYLESSTART = 4021; |
|
This item has no description. |
SCI_GETTABDRAWMODE = 2698; |
|
This item has no description. |
SCI_GETTABINDENTS = 2261; |
|
This item has no description. |
SCI_GETTABMINIMUMWIDTH = 2725; |
|
This item has no description. |
SCI_GETTABWIDTH = 2121; |
|
This item has no description. |
SCI_GETTAG = 2616; |
|
This item has no description. |
SCI_GETTARGETEND = 2193; |
|
This item has no description. |
SCI_GETTARGETENDVIRTUALSPACE = 2731; |
|
This item has no description. |
SCI_GETTARGETSTART = 2191; |
|
This item has no description. |
SCI_GETTARGETSTARTVIRTUALSPACE = 2729; |
|
This item has no description. |
SCI_GETTARGETTEXT = 2687; |
|
This item has no description. |
SCI_GETTECHNOLOGY = 2631; |
|
This item has no description. |
SCI_GETTEXT = 2182; |
|
This item has no description. |
SCI_GETTEXTLENGTH = 2183; |
|
This item has no description. |
SCI_GETTEXTRANGE = 2162 deprecated 'Use SCI_GETTEXTRANGEFULL instead'; |
|
Warning: this symbol is deprecated: Use SCI_GETTEXTRANGEFULL instead This item has no description. |
SCI_GETTEXTRANGEFULL = 2039; |
|
This item has no description. |
SCI_GETUNDOCOLLECTION = 2019; |
|
This item has no description. |
SCI_GETUNDOSELECTIONHISTORY = 2783; |
|
This item has no description. |
SCI_GETUNDOSEQUENCE = 2799; |
|
This item has no description. |
SCI_GETUSETABS = 2125; |
|
This item has no description. |
SCI_GETVIEWEOL = 2355; |
|
This item has no description. |
SCI_GETVIEWWS = 2020; |
|
This item has no description. |
SCI_GETVIRTUALSPACEOPTIONS = 2597; |
|
This item has no description. |
SCI_GETVSCROLLBAR = 2281; |
|
This item has no description. |
SCI_GETWHITESPACECHARS = 2647; |
|
This item has no description. |
SCI_GETWHITESPACESIZE = 2087; |
|
This item has no description. |
SCI_GETWORDCHARS = 2646; |
|
This item has no description. |
SCI_GETWRAPINDENTMODE = 2473; |
|
This item has no description. |
SCI_GETWRAPMODE = 2269; |
|
This item has no description. |
SCI_GETWRAPSTARTINDENT = 2465; |
|
This item has no description. |
SCI_GETWRAPVISUALFLAGS = 2461; |
|
This item has no description. |
SCI_GETWRAPVISUALFLAGSLOCATION = 2463; |
|
This item has no description. |
SCI_GETXOFFSET = 2398; |
|
This item has no description. |
SCI_GETZOOM = 2374; |
|
This item has no description. |
SCI_GOTOLINE = 2024; |
|
This item has no description. |
SCI_GOTOPOS = 2025; |
|
This item has no description. |
SCI_GRABFOCUS = 2400; |
|
This item has no description. |
SCI_HIDELINES = 2227; |
|
This item has no description. |
SCI_HIDESELECTION = 2163; |
|
This item has no description. |
SCI_HOME = 2312; |
|
This item has no description. |
SCI_HOMEDISPLAY = 2345; |
|
This item has no description. |
SCI_HOMEDISPLAYEXTEND = 2346; |
|
This item has no description. |
SCI_HOMEEXTEND = 2313; |
|
This item has no description. |
SCI_HOMERECTEXTEND = 2430; |
|
This item has no description. |
SCI_HOMEWRAP = 2349; |
|
This item has no description. |
SCI_HOMEWRAPEXTEND = 2450; |
|
This item has no description. |
SCI_INDEXPOSITIONFROMLINE = 2714; |
|
This item has no description. |
SCI_INDICATORALLONFOR = 2506; |
|
This item has no description. |
SCI_INDICATORCLEARRANGE = 2505; |
|
This item has no description. |
SCI_INDICATOREND = 2509; |
|
This item has no description. |
SCI_INDICATORFILLRANGE = 2504; |
|
This item has no description. |
SCI_INDICATORSTART = 2508; |
|
This item has no description. |
SCI_INDICATORVALUEAT = 2507; |
|
This item has no description. |
SCI_INDICGETALPHA = 2524; |
|
This item has no description. |
SCI_INDICGETFLAGS = 2685; |
|
This item has no description. |
SCI_INDICGETFORE = 2083; |
|
This item has no description. |
SCI_INDICGETHOVERFORE = 2683; |
|
This item has no description. |
SCI_INDICGETHOVERSTYLE = 2681; |
|
This item has no description. |
SCI_INDICGETOUTLINEALPHA = 2559; |
|
This item has no description. |
SCI_INDICGETSTROKEWIDTH = 2752; |
|
This item has no description. |
SCI_INDICGETSTYLE = 2081; |
|
This item has no description. |
SCI_INDICGETUNDER = 2511; |
|
This item has no description. |
SCI_INDICSETALPHA = 2523; |
|
This item has no description. |
SCI_INDICSETFLAGS = 2684; |
|
This item has no description. |
SCI_INDICSETFORE = 2082; |
|
This item has no description. |
SCI_INDICSETHOVERFORE = 2682; |
|
This item has no description. |
SCI_INDICSETHOVERSTYLE = 2680; |
|
This item has no description. |
SCI_INDICSETOUTLINEALPHA = 2558; |
|
This item has no description. |
SCI_INDICSETSTROKEWIDTH = 2751; |
|
This item has no description. |
SCI_INDICSETSTYLE = 2080; |
|
This item has no description. |
SCI_INDICSETUNDER = 2510; |
|
This item has no description. |
SCI_INSERTTEXT = 2003; |
|
This item has no description. |
SCI_ISRANGEWORD = 2691; |
|
This item has no description. |
SCI_LEXER_START = 4000; |
|
This item has no description. |
SCI_LINECOPY = 2455; |
|
This item has no description. |
SCI_LINECUT = 2337; |
|
This item has no description. |
SCI_LINEDEDENT = 2814; |
|
This item has no description. |
SCI_LINEDELETE = 2338; |
|
This item has no description. |
SCI_LINEDOWN = 2300; |
|
This item has no description. |
SCI_LINEDOWNEXTEND = 2301; |
|
This item has no description. |
SCI_LINEDOWNRECTEXTEND = 2426; |
|
This item has no description. |
SCI_LINEDUPLICATE = 2404; |
|
This item has no description. |
SCI_LINEEND = 2314; |
|
This item has no description. |
SCI_LINEENDDISPLAY = 2347; |
|
This item has no description. |
SCI_LINEENDDISPLAYEXTEND = 2348; |
|
This item has no description. |
SCI_LINEENDEXTEND = 2315; |
|
This item has no description. |
SCI_LINEENDRECTEXTEND = 2432; |
|
This item has no description. |
SCI_LINEENDWRAP = 2451; |
|
This item has no description. |
SCI_LINEENDWRAPEXTEND = 2452; |
|
This item has no description. |
SCI_LINEFROMINDEXPOSITION = 2713; |
|
This item has no description. |
SCI_LINEFROMPOSITION = 2166; |
|
This item has no description. |
SCI_LINEINDENT = 2813; |
|
This item has no description. |
SCI_LINELENGTH = 2350; |
|
This item has no description. |
SCI_LINEREVERSE = 2354; |
|
This item has no description. |
SCI_LINESCROLL = 2168; |
|
This item has no description. |
SCI_LINESCROLLDOWN = 2342; |
|
This item has no description. |
SCI_LINESCROLLUP = 2343; |
|
This item has no description. |
SCI_LINESJOIN = 2288; |
|
This item has no description. |
SCI_LINESONSCREEN = 2370; |
|
This item has no description. |
SCI_LINESSPLIT = 2289; |
|
This item has no description. |
SCI_LINETRANSPOSE = 2339; |
|
This item has no description. |
SCI_LINEUP = 2302; |
|
This item has no description. |
SCI_LINEUPEXTEND = 2303; |
|
This item has no description. |
SCI_LINEUPRECTEXTEND = 2427; |
|
This item has no description. |
SCI_LOWERCASE = 2340; |
|
This item has no description. |
SCI_MARGINGETSTYLE = 2533; |
|
This item has no description. |
SCI_MARGINGETSTYLEOFFSET = 2538; |
|
This item has no description. |
SCI_MARGINGETSTYLES = 2535; |
|
This item has no description. |
SCI_MARGINGETTEXT = 2531; |
|
This item has no description. |
SCI_MARGINSETSTYLE = 2532; |
|
This item has no description. |
SCI_MARGINSETSTYLEOFFSET = 2537; |
|
This item has no description. |
SCI_MARGINSETSTYLES = 2534; |
|
This item has no description. |
SCI_MARGINSETTEXT = 2530; |
|
This item has no description. |
SCI_MARGINTEXTCLEARALL = 2536; |
|
This item has no description. |
SCI_MARKERADD = 2043; |
|
This item has no description. |
SCI_MARKERADDSET = 2466; |
|
This item has no description. |
SCI_MARKERDEFINE = 2040; |
|
This item has no description. |
SCI_MARKERDEFINEPIXMAP = 2049; |
|
This item has no description. |
SCI_MARKERDEFINERGBAIMAGE = 2626; |
|
This item has no description. |
SCI_MARKERDELETE = 2044; |
|
This item has no description. |
SCI_MARKERDELETEALL = 2045; |
|
This item has no description. |
SCI_MARKERDELETEHANDLE = 2018; |
|
This item has no description. |
SCI_MARKERENABLEHIGHLIGHT = 2293; |
|
This item has no description. |
SCI_MARKERGET = 2046; |
|
This item has no description. |
SCI_MARKERGETLAYER = 2734; |
|
This item has no description. |
SCI_MARKERHANDLEFROMLINE = 2732; |
|
This item has no description. |
SCI_MARKERLINEFROMHANDLE = 2017; |
|
This item has no description. |
SCI_MARKERNEXT = 2047; |
|
This item has no description. |
SCI_MARKERNUMBERFROMLINE = 2733; |
|
This item has no description. |
SCI_MARKERPREVIOUS = 2048; |
|
This item has no description. |
SCI_MARKERSETALPHA = 2476; |
|
This item has no description. |
SCI_MARKERSETBACK = 2042; |
|
This item has no description. |
SCI_MARKERSETBACKSELECTED = 2292; |
|
This item has no description. |
SCI_MARKERSETBACKSELECTEDTRANSLUCENT = 2296; |
|
This item has no description. |
SCI_MARKERSETBACKTRANSLUCENT = 2295; |
|
This item has no description. |
SCI_MARKERSETFORE = 2041; |
|
This item has no description. |
SCI_MARKERSETFORETRANSLUCENT = 2294; |
|
This item has no description. |
SCI_MARKERSETLAYER = 2735; |
|
This item has no description. |
SCI_MARKERSETSTROKEWIDTH = 2297; |
|
This item has no description. |
SCI_MARKERSYMBOLDEFINED = 2529; |
|
This item has no description. |
SCI_MOVECARETINSIDEVIEW = 2401; |
|
This item has no description. |
SCI_MOVESELECTEDLINESDOWN = 2621; |
|
This item has no description. |
SCI_MOVESELECTEDLINESUP = 2620; |
|
This item has no description. |
SCI_MULTIEDGEADDLINE = 2694; |
|
This item has no description. |
SCI_MULTIEDGECLEARALL = 2695; |
|
This item has no description. |
SCI_MULTIPLESELECTADDEACH = 2689; |
|
This item has no description. |
SCI_MULTIPLESELECTADDNEXT = 2688; |
|
This item has no description. |
SCI_NAMEOFSTYLE = 4030; |
|
This item has no description. |
SCI_NEWLINE = 2329; |
|
This item has no description. |
SCI_NULL = 2172; |
|
This item has no description. |
SCI_OPTIONAL_START = 3000; |
|
This item has no description. |
SCI_PAGEDOWN = 2322; |
|
This item has no description. |
SCI_PAGEDOWNEXTEND = 2323; |
|
This item has no description. |
SCI_PAGEDOWNRECTEXTEND = 2434; |
|
This item has no description. |
SCI_PAGEUP = 2320; |
|
This item has no description. |
SCI_PAGEUPEXTEND = 2321; |
|
This item has no description. |
SCI_PAGEUPRECTEXTEND = 2433; |
|
This item has no description. |
SCI_PARADOWN = 2413; |
|
This item has no description. |
SCI_PARADOWNEXTEND = 2414; |
|
This item has no description. |
SCI_PARAUP = 2415; |
|
This item has no description. |
SCI_PARAUPEXTEND = 2416; |
|
This item has no description. |
SCI_PASTE = 2179; |
|
This item has no description. |
SCI_POINTXFROMPOSITION = 2164; |
|
This item has no description. |
SCI_POINTYFROMPOSITION = 2165; |
|
This item has no description. |
SCI_POSITIONAFTER = 2418; |
|
This item has no description. |
SCI_POSITIONBEFORE = 2417; |
|
This item has no description. |
SCI_POSITIONFROMLINE = 2167; |
|
This item has no description. |
SCI_POSITIONFROMPOINT = 2022; |
|
This item has no description. |
SCI_POSITIONFROMPOINTCLOSE = 2023; |
|
This item has no description. |
SCI_POSITIONRELATIVE = 2670; |
|
This item has no description. |
SCI_POSITIONRELATIVECODEUNITS = 2716; |
|
This item has no description. |
SCI_PRIVATELEXERCALL = 4013; |
|
This item has no description. |
SCI_PROPERTYNAMES = 4014; |
|
This item has no description. |
SCI_PROPERTYTYPE = 4015; |
|
This item has no description. |
SCI_REDO = 2011; |
|
This item has no description. |
SCI_REGISTERIMAGE = 2405; |
|
This item has no description. |
SCI_REGISTERRGBAIMAGE = 2627; |
|
This item has no description. |
SCI_RELEASEALLEXTENDEDSTYLES = 2552; |
|
This item has no description. |
SCI_RELEASEDOCUMENT = 2377; |
|
This item has no description. |
SCI_RELEASELINECHARACTERINDEX = 2712; |
|
This item has no description. |
SCI_REPLACERECTANGULAR = 2771; |
|
This item has no description. |
SCI_REPLACESEL = 2170; |
|
This item has no description. |
SCI_REPLACETARGET = 2194; |
|
This item has no description. |
SCI_REPLACETARGETMINIMAL = 2779; |
|
This item has no description. |
SCI_REPLACETARGETRE = 2195; |
|
This item has no description. |
SCI_RESETELEMENTCOLOUR = 2755; |
|
This item has no description. |
SCI_RGBAIMAGESETHEIGHT = 2625; |
|
This item has no description. |
SCI_RGBAIMAGESETSCALE = 2651; |
|
This item has no description. |
SCI_RGBAIMAGESETWIDTH = 2624; |
|
This item has no description. |
SCI_ROTATESELECTION = 2606; |
|
This item has no description. |
SCI_SCROLLCARET = 2169; |
|
This item has no description. |
SCI_SCROLLRANGE = 2569; |
|
This item has no description. |
SCI_SCROLLTOEND = 2629; |
|
This item has no description. |
SCI_SCROLLTOSTART = 2628; |
|
This item has no description. |
SCI_SCROLLVERTICAL = 2817; |
|
This item has no description. |
SCI_SEARCHANCHOR = 2366; |
|
This item has no description. |
SCI_SEARCHINTARGET = 2197; |
|
This item has no description. |
SCI_SEARCHNEXT = 2367; |
|
This item has no description. |
SCI_SEARCHPREV = 2368; |
|
This item has no description. |
SCI_SELECTALL = 2013; |
|
This item has no description. |
SCI_SELECTIONDUPLICATE = 2469; |
|
This item has no description. |
SCI_SELECTIONFROMPOINT = 2474; |
|
This item has no description. |
SCI_SELECTIONISRECTANGLE = 2372; |
|
This item has no description. |
SCI_SETACCESSIBILITY = 2702; |
|
This item has no description. |
SCI_SETADDITIONALCARETFORE = 2604; |
|
This item has no description. |
SCI_SETADDITIONALCARETSBLINK = 2567; |
|
This item has no description. |
SCI_SETADDITIONALCARETSVISIBLE = 2608; |
|
This item has no description. |
SCI_SETADDITIONALSELALPHA = 2602; |
|
This item has no description. |
SCI_SETADDITIONALSELBACK = 2601; |
|
This item has no description. |
SCI_SETADDITIONALSELECTIONTYPING = 2565; |
|
This item has no description. |
SCI_SETADDITIONALSELFORE = 2600; |
|
This item has no description. |
SCI_SETANCHOR = 2026; |
|
This item has no description. |
SCI_SETAUTOMATICFOLD = 2663; |
|
This item has no description. |
SCI_SETBACKSPACEUNINDENTS = 2262; |
|
This item has no description. |
SCI_SETBUFFEREDDRAW = 2035; |
|
This item has no description. |
SCI_SETCARETFORE = 2069; |
|
This item has no description. |
SCI_SETCARETLINEBACK = 2098; |
|
This item has no description. |
SCI_SETCARETLINEBACKALPHA = 2470; |
|
This item has no description. |
SCI_SETCARETLINEFRAME = 2705; |
|
This item has no description. |
SCI_SETCARETLINEHIGHLIGHTSUBLINE = 2774; |
|
This item has no description. |
SCI_SETCARETLINELAYER = 2765; |
|
This item has no description. |
SCI_SETCARETLINEVISIBLE = 2096; |
|
This item has no description. |
SCI_SETCARETLINEVISIBLEALWAYS = 2655; |
|
This item has no description. |
SCI_SETCARETPERIOD = 2076; |
|
This item has no description. |
SCI_SETCARETSTICKY = 2458; |
|
This item has no description. |
SCI_SETCARETSTYLE = 2512; |
|
This item has no description. |
SCI_SETCARETWIDTH = 2188; |
|
This item has no description. |
SCI_SETCHANGEHISTORY = 2780; |
|
This item has no description. |
SCI_SETCHARACTERCATEGORYOPTIMIZATION = 2720; |
|
This item has no description. |
SCI_SETCHARSDEFAULT = 2444; |
|
This item has no description. |
SCI_SETCODEPAGE = 2037; |
|
This item has no description. |
SCI_SETCOMMANDEVENTS = 2717; |
|
This item has no description. |
SCI_SETCONTROLCHARSYMBOL = 2388; |
|
This item has no description. |
SCI_SETCOPYSEPARATOR = 2811; |
|
This item has no description. |
SCI_SETCURRENTPOS = 2141; |
|
This item has no description. |
SCI_SETCURSOR = 2386; |
|
This item has no description. |
SCI_SETDEFAULTFOLDDISPLAYTEXT = 2722; |
|
This item has no description. |
SCI_SETDOCPOINTER = 2358; |
|
This item has no description. |
SCI_SETEDGECOLOUR = 2365; |
|
This item has no description. |
SCI_SETEDGECOLUMN = 2361; |
|
This item has no description. |
SCI_SETEDGEMODE = 2363; |
|
This item has no description. |
SCI_SETELEMENTCOLOUR = 2753; |
|
This item has no description. |
SCI_SETEMPTYSELECTION = 2556; |
|
This item has no description. |
SCI_SETENDATLASTLINE = 2277; |
|
This item has no description. |
SCI_SETEOLMODE = 2031; |
|
This item has no description. |
SCI_SETEXTRAASCENT = 2525; |
|
This item has no description. |
SCI_SETEXTRADESCENT = 2527; |
|
This item has no description. |
SCI_SETFIRSTVISIBLELINE = 2613; |
|
This item has no description. |
SCI_SETFOCUS = 2380; |
|
This item has no description. |
SCI_SETFOLDEXPANDED = 2229; |
|
This item has no description. |
SCI_SETFOLDFLAGS = 2233; |
|
This item has no description. |
SCI_SETFOLDLEVEL = 2222; |
|
This item has no description. |
SCI_SETFOLDMARGINCOLOUR = 2290; |
|
This item has no description. |
SCI_SETFOLDMARGINHICOLOUR = 2291; |
|
This item has no description. |
SCI_SETFONTLOCALE = 2760; |
|
This item has no description. |
SCI_SETFONTQUALITY = 2611; |
|
This item has no description. |
SCI_SETHIGHLIGHTGUIDE = 2134; |
|
This item has no description. |
SCI_SETHOTSPOTACTIVEBACK = 2411; |
|
This item has no description. |
SCI_SETHOTSPOTACTIVEFORE = 2410; |
|
This item has no description. |
SCI_SETHOTSPOTACTIVEUNDERLINE = 2412; |
|
This item has no description. |
SCI_SETHOTSPOTSINGLELINE = 2421; |
|
This item has no description. |
SCI_SETHSCROLLBAR = 2130; |
|
This item has no description. |
SCI_SETIDENTIFIER = 2622; |
|
This item has no description. |
SCI_SETIDENTIFIERS = 4024; |
|
This item has no description. |
SCI_SETIDLESTYLING = 2692; |
|
This item has no description. |
SCI_SETILEXER = 4033; |
|
This item has no description. |
SCI_SETIMEINTERACTION = 2679; |
|
This item has no description. |
SCI_SETINDENT = 2122; |
|
This item has no description. |
SCI_SETINDENTATIONGUIDES = 2132; |
|
This item has no description. |
SCI_SETINDICATORCURRENT = 2500; |
|
This item has no description. |
SCI_SETINDICATORVALUE = 2502; |
|
This item has no description. |
SCI_SETKEYWORDS = 4005; |
|
This item has no description. |
SCI_SETLAYOUTCACHE = 2272; |
|
This item has no description. |
SCI_SETLAYOUTTHREADS = 2775; |
|
This item has no description. |
SCI_SETLENGTHFORENCODE = 2448; |
|
This item has no description. |
SCI_SETLINEENDTYPESALLOWED = 2656; |
|
This item has no description. |
SCI_SETLINEINDENTATION = 2126; |
|
This item has no description. |
SCI_SETLINESTATE = 2092; |
|
This item has no description. |
SCI_SETMAINSELECTION = 2574; |
|
This item has no description. |
SCI_SETMARGINBACKN = 2250; |
|
This item has no description. |
SCI_SETMARGINCURSORN = 2248; |
|
This item has no description. |
SCI_SETMARGINLEFT = 2155; |
|
This item has no description. |
SCI_SETMARGINMASKN = 2244; |
|
This item has no description. |
SCI_SETMARGINOPTIONS = 2539; |
|
This item has no description. |
SCI_SETMARGINRIGHT = 2157; |
|
This item has no description. |
SCI_SETMARGINS = 2252; |
|
This item has no description. |
SCI_SETMARGINSENSITIVEN = 2246; |
|
This item has no description. |
SCI_SETMARGINTYPEN = 2240; |
|
This item has no description. |
SCI_SETMARGINWIDTHN = 2242; |
|
This item has no description. |
SCI_SETMODEVENTMASK = 2359; |
|
This item has no description. |
SCI_SETMOUSEDOWNCAPTURES = 2384; |
|
This item has no description. |
SCI_SETMOUSEDWELLTIME = 2264; |
|
This item has no description. |
SCI_SETMOUSESELECTIONRECTANGULARSWITCH = 2668; |
|
This item has no description. |
SCI_SETMOUSEWHEELCAPTURES = 2696; |
|
This item has no description. |
SCI_SETMOVEEXTENDSSELECTION = 2719; |
|
This item has no description. |
SCI_SETMULTIPASTE = 2614; |
|
This item has no description. |
SCI_SETMULTIPLESELECTION = 2563; |
|
This item has no description. |
SCI_SETOVERTYPE = 2186; |
|
This item has no description. |
SCI_SETPASTECONVERTENDINGS = 2467; |
|
This item has no description. |
SCI_SETPHASESDRAW = 2674; |
|
This item has no description. |
SCI_SETPOSITIONCACHE = 2514; |
|
This item has no description. |
SCI_SETPRINTCOLOURMODE = 2148; |
|
This item has no description. |
SCI_SETPRINTMAGNIFICATION = 2146; |
|
This item has no description. |
SCI_SETPRINTWRAPMODE = 2406; |
|
This item has no description. |
SCI_SETPROPERTY = 4004; |
|
This item has no description. |
SCI_SETPUNCTUATIONCHARS = 2648; |
|
This item has no description. |
SCI_SETREADONLY = 2171; |
|
This item has no description. |
SCI_SETRECTANGULARSELECTIONANCHOR = 2590; |
|
This item has no description. |
SCI_SETRECTANGULARSELECTIONANCHORVIRTUALSPACE = 2594; |
|
This item has no description. |
SCI_SETRECTANGULARSELECTIONCARET = 2588; |
|
This item has no description. |
SCI_SETRECTANGULARSELECTIONCARETVIRTUALSPACE = 2592; |
|
This item has no description. |
SCI_SETRECTANGULARSELECTIONMODIFIER = 2598; |
|
This item has no description. |
SCI_SETREPRESENTATION = 2665; |
|
This item has no description. |
SCI_SETREPRESENTATIONAPPEARANCE = 2766; |
|
This item has no description. |
SCI_SETREPRESENTATIONCOLOUR = 2768; |
|
This item has no description. |
SCI_SETSAVEPOINT = 2014; |
|
This item has no description. |
SCI_SETSCROLLWIDTH = 2274; |
|
This item has no description. |
SCI_SETSCROLLWIDTHTRACKING = 2516; |
|
This item has no description. |
SCI_SETSEARCHFLAGS = 2198; |
|
This item has no description. |
SCI_SETSEL = 2160; |
|
This item has no description. |
SCI_SETSELALPHA = 2478; |
|
This item has no description. |
SCI_SETSELBACK = 2068; |
|
This item has no description. |
SCI_SETSELECTION = 2572; |
|
This item has no description. |
SCI_SETSELECTIONEND = 2144; |
|
This item has no description. |
SCI_SETSELECTIONLAYER = 2763; |
|
This item has no description. |
SCI_SETSELECTIONMODE = 2422; |
|
This item has no description. |
SCI_SETSELECTIONNANCHOR = 2578; |
|
This item has no description. |
SCI_SETSELECTIONNANCHORVIRTUALSPACE = 2582; |
|
This item has no description. |
SCI_SETSELECTIONNCARET = 2576; |
|
This item has no description. |
SCI_SETSELECTIONNCARETVIRTUALSPACE = 2580; |
|
This item has no description. |
SCI_SETSELECTIONNEND = 2586; |
|
This item has no description. |
SCI_SETSELECTIONNSTART = 2584; |
|
This item has no description. |
SCI_SETSELECTIONSERIALIZED = 2784; |
|
This item has no description. |
SCI_SETSELECTIONSTART = 2142; |
|
This item has no description. |
SCI_SETSELEOLFILLED = 2480; |
|
This item has no description. |
SCI_SETSELFORE = 2067; |
|
This item has no description. |
SCI_SETSTATUS = 2382; |
|
This item has no description. |
SCI_SETSTYLING = 2033; |
|
This item has no description. |
SCI_SETSTYLINGEX = 2073; |
|
This item has no description. |
SCI_SETTABDRAWMODE = 2699; |
|
This item has no description. |
SCI_SETTABINDENTS = 2260; |
|
This item has no description. |
SCI_SETTABMINIMUMWIDTH = 2724; |
|
This item has no description. |
SCI_SETTABWIDTH = 2036; |
|
This item has no description. |
SCI_SETTARGETEND = 2192; |
|
This item has no description. |
SCI_SETTARGETENDVIRTUALSPACE = 2730; |
|
This item has no description. |
SCI_SETTARGETRANGE = 2686; |
|
This item has no description. |
SCI_SETTARGETSTART = 2190; |
|
This item has no description. |
SCI_SETTARGETSTARTVIRTUALSPACE = 2728; |
|
This item has no description. |
SCI_SETTECHNOLOGY = 2630; |
|
This item has no description. |
SCI_SETTEXT = 2181; |
|
This item has no description. |
SCI_SETUNDOCOLLECTION = 2012; |
|
This item has no description. |
SCI_SETUNDOSELECTIONHISTORY = 2782; |
|
This item has no description. |
SCI_SETUSETABS = 2124; |
|
This item has no description. |
SCI_SETVIEWEOL = 2356; |
|
This item has no description. |
SCI_SETVIEWWS = 2021; |
|
This item has no description. |
SCI_SETVIRTUALSPACEOPTIONS = 2596; |
|
This item has no description. |
SCI_SETVISIBLEPOLICY = 2394; |
|
This item has no description. |
SCI_SETVSCROLLBAR = 2280; |
|
This item has no description. |
SCI_SETWHITESPACEBACK = 2085; |
|
This item has no description. |
SCI_SETWHITESPACECHARS = 2443; |
|
This item has no description. |
SCI_SETWHITESPACEFORE = 2084; |
|
This item has no description. |
SCI_SETWHITESPACESIZE = 2086; |
|
This item has no description. |
SCI_SETWORDCHARS = 2077; |
|
This item has no description. |
SCI_SETWRAPINDENTMODE = 2472; |
|
This item has no description. |
SCI_SETWRAPMODE = 2268; |
|
This item has no description. |
SCI_SETWRAPSTARTINDENT = 2464; |
|
This item has no description. |
SCI_SETWRAPVISUALFLAGS = 2460; |
|
This item has no description. |
SCI_SETWRAPVISUALFLAGSLOCATION = 2462; |
|
This item has no description. |
SCI_SETXCARETPOLICY = 2402; |
|
This item has no description. |
SCI_SETXOFFSET = 2397; |
|
This item has no description. |
SCI_SETYCARETPOLICY = 2403; |
|
This item has no description. |
SCI_SETZOOM = 2373; |
|
This item has no description. |
SCI_SHOWLINES = 2226; |
|
This item has no description. |
SCI_START = 2000; |
|
This item has no description. |
SCI_STARTRECORD = 3001; |
|
This item has no description. |
SCI_STARTSTYLING = 2032; |
|
This item has no description. |
SCI_STOPRECORD = 3002; |
|
This item has no description. |
SCI_STUTTEREDPAGEDOWN = 2437; |
|
This item has no description. |
SCI_STUTTEREDPAGEDOWNEXTEND = 2438; |
|
This item has no description. |
SCI_STUTTEREDPAGEUP = 2435; |
|
This item has no description. |
SCI_STUTTEREDPAGEUPEXTEND = 2436; |
|
This item has no description. |
SCI_STYLECLEARALL = 2050; |
|
This item has no description. |
SCI_STYLEGETBACK = 2482; |
|
This item has no description. |
SCI_STYLEGETBOLD = 2483; |
|
This item has no description. |
SCI_STYLEGETCASE = 2489; |
|
This item has no description. |
SCI_STYLEGETCHANGEABLE = 2492; |
|
This item has no description. |
SCI_STYLEGETCHARACTERSET = 2490; |
|
This item has no description. |
SCI_STYLEGETCHECKMONOSPACED = 2255; |
|
This item has no description. |
SCI_STYLEGETEOLFILLED = 2487; |
|
This item has no description. |
SCI_STYLEGETFONT = 2486; |
|
This item has no description. |
SCI_STYLEGETFORE = 2481; |
|
This item has no description. |
SCI_STYLEGETHOTSPOT = 2493; |
|
This item has no description. |
SCI_STYLEGETINVISIBLEREPRESENTATION = 2257; |
|
This item has no description. |
SCI_STYLEGETITALIC = 2484; |
|
This item has no description. |
SCI_STYLEGETSIZE = 2485; |
|
This item has no description. |
SCI_STYLEGETSIZEFRACTIONAL = 2062; |
|
This item has no description. |
SCI_STYLEGETSTRETCH = 2259; |
|
This item has no description. |
SCI_STYLEGETUNDERLINE = 2488; |
|
This item has no description. |
SCI_STYLEGETVISIBLE = 2491; |
|
This item has no description. |
SCI_STYLEGETWEIGHT = 2064; |
|
This item has no description. |
SCI_STYLERESETDEFAULT = 2058; |
|
This item has no description. |
SCI_STYLESETBACK = 2052; |
|
This item has no description. |
SCI_STYLESETBOLD = 2053; |
|
This item has no description. |
SCI_STYLESETCASE = 2060; |
|
This item has no description. |
SCI_STYLESETCHANGEABLE = 2099; |
|
This item has no description. |
SCI_STYLESETCHARACTERSET = 2066; |
|
This item has no description. |
SCI_STYLESETCHECKMONOSPACED = 2254; |
|
This item has no description. |
SCI_STYLESETEOLFILLED = 2057; |
|
This item has no description. |
SCI_STYLESETFONT = 2056; |
|
This item has no description. |
SCI_STYLESETFORE = 2051; |
|
This item has no description. |
SCI_STYLESETHOTSPOT = 2409; |
|
This item has no description. |
SCI_STYLESETINVISIBLEREPRESENTATION = 2256; |
|
This item has no description. |
SCI_STYLESETITALIC = 2054; |
|
This item has no description. |
SCI_STYLESETSIZE = 2055; |
|
This item has no description. |
SCI_STYLESETSIZEFRACTIONAL = 2061; |
|
This item has no description. |
SCI_STYLESETSTRETCH = 2258; |
|
This item has no description. |
SCI_STYLESETUNDERLINE = 2059; |
|
This item has no description. |
SCI_STYLESETVISIBLE = 2074; |
|
This item has no description. |
SCI_STYLESETWEIGHT = 2063; |
|
This item has no description. |
SCI_SUPPORTSFEATURE = 2750; |
|
This item has no description. |
SCI_SWAPMAINANCHORCARET = 2607; |
|
This item has no description. |
SCI_TAB = 2327; |
|
This item has no description. |
SCI_TAGSOFSTYLE = 4031; |
|
This item has no description. |
SCI_TARGETASUTF8 = 2447; |
|
This item has no description. |
SCI_TARGETFROMSELECTION = 2287; |
|
This item has no description. |
SCI_TARGETWHOLEDOCUMENT = 2690; |
|
This item has no description. |
SCI_TEXTHEIGHT = 2279; |
|
This item has no description. |
SCI_TEXTWIDTH = 2276; |
|
This item has no description. |
SCI_TOGGLECARETSTICKY = 2459; |
|
This item has no description. |
SCI_TOGGLEFOLD = 2231; |
|
This item has no description. |
SCI_TOGGLEFOLDSHOWTEXT = 2700; |
|
This item has no description. |
SCI_UNDO = 2176; |
|
This item has no description. |
SCI_UPPERCASE = 2341; |
|
This item has no description. |
SCI_USEPOPUP = 2371; |
|
This item has no description. |
SCI_USERLISTSHOW = 2117; |
|
This item has no description. |
SCI_VCHOME = 2331; |
|
This item has no description. |
SCI_VCHOMEDISPLAY = 2652; |
|
This item has no description. |
SCI_VCHOMEDISPLAYEXTEND = 2653; |
|
This item has no description. |
SCI_VCHOMEEXTEND = 2332; |
|
This item has no description. |
SCI_VCHOMERECTEXTEND = 2431; |
|
This item has no description. |
SCI_VCHOMEWRAP = 2453; |
|
This item has no description. |
SCI_VCHOMEWRAPEXTEND = 2454; |
|
This item has no description. |
SCI_VERTICALCENTRECARET = 2619; |
|
This item has no description. |
SCI_VISIBLEFROMDOCLINE = 2220; |
|
This item has no description. |
SCI_WORDENDPOSITION = 2267; |
|
This item has no description. |
SCI_WORDLEFT = 2308; |
|
This item has no description. |
SCI_WORDLEFTEND = 2439; |
|
This item has no description. |
SCI_WORDLEFTENDEXTEND = 2440; |
|
This item has no description. |
SCI_WORDLEFTEXTEND = 2309; |
|
This item has no description. |
SCI_WORDPARTLEFT = 2390; |
|
This item has no description. |
SCI_WORDPARTLEFTEXTEND = 2391; |
|
This item has no description. |
SCI_WORDPARTRIGHT = 2392; |
|
This item has no description. |
SCI_WORDPARTRIGHTEXTEND = 2393; |
|
This item has no description. |
SCI_WORDRIGHT = 2310; |
|
This item has no description. |
SCI_WORDRIGHTEND = 2441; |
|
This item has no description. |
SCI_WORDRIGHTENDEXTEND = 2442; |
|
This item has no description. |
SCI_WORDRIGHTEXTEND = 2311; |
|
This item has no description. |
SCI_WORDSTARTPOSITION = 2266; |
|
This item has no description. |
SCI_WRAPCOUNT = 2235; |
|
This item has no description. |
SCI_ZOOMIN = 2333; |
|
This item has no description. |
SCI_ZOOMOUT = 2334; |
|
This item has no description. |
SCK_ADD = 310; |
|
This item has no description. |
SCK_BACK = 8; |
|
This item has no description. |
SCK_DELETE = 308; |
|
This item has no description. |
SCK_DIVIDE = 312; |
|
This item has no description. |
SCK_DOWN = 300; |
|
This item has no description. |
SCK_END = 305; |
|
This item has no description. |
SCK_ESCAPE = 7; |
|
This item has no description. |
SCK_HOME = 304; |
|
This item has no description. |
SCK_INSERT = 309; |
|
This item has no description. |
SCK_LEFT = 302; |
|
This item has no description. |
SCK_MENU = 315; |
|
This item has no description. |
SCK_NEXT = 307; |
|
This item has no description. |
SCK_PRIOR = 306; |
|
This item has no description. |
SCK_RETURN = 13; |
|
This item has no description. |
SCK_RIGHT = 303; |
|
This item has no description. |
SCK_RWIN = 314; |
|
This item has no description. |
SCK_SUBTRACT = 311; |
|
This item has no description. |
SCK_TAB = 9; |
|
This item has no description. |
SCK_UP = 301; |
|
This item has no description. |
SCK_WIN = 313; |
|
This item has no description. |
SCMOD_ALT = 4; |
|
This item has no description. |
SCMOD_CTRL = 2; |
|
This item has no description. |
SCMOD_META = 16; |
|
This item has no description. |
SCMOD_NORM = 0; |
|
This item has no description. |
SCMOD_SHIFT = 1; |
|
This item has no description. |
SCMOD_SUPER = 8; |
|
This item has no description. |
SCN_AUTOCCANCELLED = 2025; |
|
This item has no description. |
SCN_AUTOCCHARDELETED = 2026; |
|
This item has no description. |
SCN_AUTOCCOMPLETED = 2030; |
|
This item has no description. |
SCN_AUTOCSELECTION = 2022; |
|
This item has no description. |
SCN_AUTOCSELECTIONCHANGE = 2032; |
|
This item has no description. |
SCN_CALLTIPCLICK = 2021; |
|
This item has no description. |
SCN_CHARADDED = 2001; |
|
This item has no description. |
SCN_DOUBLECLICK = 2006; |
|
This item has no description. |
SCN_DWELLEND = 2017; |
|
This item has no description. |
SCN_DWELLSTART = 2016; |
|
This item has no description. |
SCN_FOCUSIN = 2028; |
|
This item has no description. |
SCN_FOCUSOUT = 2029; |
|
This item has no description. |
SCN_FOLDINGSTATECHANGED = 2081; |
|
This item has no description. |
SCN_HOTSPOTCLICK = 2019; |
|
This item has no description. |
SCN_HOTSPOTDOUBLECLICK = 2020; |
|
This item has no description. |
SCN_HOTSPOTRELEASECLICK = 2027; |
|
This item has no description. |
SCN_INDICATORCLICK = 2023; |
|
This item has no description. |
SCN_INDICATORRELEASE = 2024; |
|
This item has no description. |
SCN_KEY = 2005; |
|
This item has no description. |
SCN_MACRORECORD = 2009; |
|
This item has no description. |
SCN_MARGINCLICK = 2010; |
|
This item has no description. |
SCN_MARGINRIGHTCLICK = 2031; |
|
This item has no description. |
SCN_MODIFIED = 2008; |
|
This item has no description. |
SCN_MODIFYATTEMPTRO = 2004; |
|
This item has no description. |
SCN_NEEDSHOWN = 2011; |
|
This item has no description. |
SCN_PAINTED = 2013; |
|
This item has no description. |
SCN_SAVEPOINTLEFT = 2003; |
|
This item has no description. |
SCN_SAVEPOINTREACHED = 2002; |
|
This item has no description. |
SCN_STYLENEEDED = 2000; |
|
This item has no description. |
SCN_UPDATEUI = 2007; |
|
This item has no description. |
SCN_URIDROPPED = 2015; |
|
This item has no description. |
SCN_USERLISTSELECTION = 2014; |
|
This item has no description. |
SCN_ZOOM = 2018; |
|
This item has no description. |
SCTD_LONGARROW = 0; |
|
This item has no description. |
SCTD_STRIKEOUT = 1; |
|
This item has no description. |
SCVS_NONE = 0; |
|
This item has no description. |
SCVS_NOWRAPLINESTART = 4; |
|
This item has no description. |
SCVS_RECTANGULARSELECTION = 1; |
|
This item has no description. |
SCVS_USERACCESSIBLE = 2; |
|
This item has no description. |
SCWS_INVISIBLE = 0; |
|
This item has no description. |
SCWS_VISIBLEAFTERINDENT = 2; |
|
This item has no description. |
SCWS_VISIBLEALWAYS = 1; |
|
This item has no description. |
SCWS_VISIBLEONLYININDENT = 3; |
|
This item has no description. |
SC_ACCESSIBILITY_DISABLED = 0; |
|
This item has no description. |
SC_ACCESSIBILITY_ENABLED = 1; |
|
This item has no description. |
SC_AC_COMMAND = 5; |
|
This item has no description. |
SC_AC_DOUBLECLICK = 2; |
|
This item has no description. |
SC_AC_FILLUP = 1; |
|
This item has no description. |
SC_AC_NEWLINE = 4; |
|
This item has no description. |
SC_AC_SINGLE_CHOICE = 6; |
|
This item has no description. |
SC_AC_TAB = 3; |
|
This item has no description. |
SC_ALPHA_NOALPHA = 256; |
|
This item has no description. |
SC_ALPHA_OPAQUE = 255; |
|
This item has no description. |
SC_ALPHA_TRANSPARENT = 0; |
|
This item has no description. |
SC_AUTOCOMPLETE_FIXED_SIZE = 1; |
|
This item has no description. |
SC_AUTOCOMPLETE_NORMAL = 0; |
|
This item has no description. |
SC_AUTOCOMPLETE_SELECT_FIRST_ITEM = 2; |
|
This item has no description. |
SC_AUTOMATICFOLD_CHANGE = $0004; |
|
This item has no description. |
SC_AUTOMATICFOLD_CLICK = $0002; |
|
This item has no description. |
SC_AUTOMATICFOLD_NONE = 0; |
|
This item has no description. |
SC_AUTOMATICFOLD_SHOW = $0001; |
|
This item has no description. |
SC_CACHE_CARET = 1; |
|
This item has no description. |
SC_CACHE_DOCUMENT = 3; |
|
This item has no description. |
SC_CACHE_NONE = 0; |
|
This item has no description. |
SC_CACHE_PAGE = 2; |
|
This item has no description. |
SC_CARETSTICKY_OFF = 0; |
|
This item has no description. |
SC_CARETSTICKY_ON = 1; |
|
This item has no description. |
SC_CARETSTICKY_WHITESPACE = 2; |
|
This item has no description. |
SC_CASEINSENSITIVEBEHAVIOUR_IGNORECASE = 1; |
|
This item has no description. |
SC_CASEINSENSITIVEBEHAVIOUR_RESPECTCASE = 0; |
|
This item has no description. |
SC_CASE_CAMEL = 3; |
|
This item has no description. |
SC_CASE_LOWER = 2; |
|
This item has no description. |
SC_CASE_MIXED = 0; |
|
This item has no description. |
SC_CASE_UPPER = 1; |
|
This item has no description. |
SC_CHANGE_HISTORY_DISABLED = 0; |
|
This item has no description. |
SC_CHANGE_HISTORY_ENABLED = 1; |
|
This item has no description. |
SC_CHANGE_HISTORY_INDICATORS = 4; |
|
This item has no description. |
SC_CHANGE_HISTORY_MARKERS = 2; |
|
This item has no description. |
SC_CHARACTERSOURCE_DIRECT_INPUT = 0; |
|
This item has no description. |
SC_CHARACTERSOURCE_IME_RESULT = 2; |
|
This item has no description. |
SC_CHARACTERSOURCE_TENTATIVE_INPUT = 1; |
|
This item has no description. |
SC_CHARSET_8859_15 = 1000; |
|
This item has no description. |
SC_CHARSET_ANSI = 0; |
|
This item has no description. |
SC_CHARSET_ARABIC = 178; |
|
This item has no description. |
SC_CHARSET_BALTIC = 186; |
|
This item has no description. |
SC_CHARSET_CHINESEBIG5 = 136; |
|
This item has no description. |
SC_CHARSET_CYRILLIC = 1251; |
|
This item has no description. |
SC_CHARSET_DEFAULT = 1; |
|
This item has no description. |
SC_CHARSET_EASTEUROPE = 238; |
|
This item has no description. |
SC_CHARSET_GB2312 = 134; |
|
This item has no description. |
SC_CHARSET_GREEK = 161; |
|
This item has no description. |
SC_CHARSET_HANGUL = 129; |
|
This item has no description. |
SC_CHARSET_HEBREW = 177; |
|
This item has no description. |
SC_CHARSET_JOHAB = 130; |
|
This item has no description. |
SC_CHARSET_MAC = 77; |
|
This item has no description. |
SC_CHARSET_OEM = 255; |
|
This item has no description. |
SC_CHARSET_OEM866 = 866; |
|
This item has no description. |
SC_CHARSET_RUSSIAN = 204; |
|
This item has no description. |
SC_CHARSET_SHIFTJIS = 128; |
|
This item has no description. |
SC_CHARSET_SYMBOL = 2; |
|
This item has no description. |
SC_CHARSET_THAI = 222; |
|
This item has no description. |
SC_CHARSET_TURKISH = 162; |
|
This item has no description. |
SC_CHARSET_VIETNAMESE = 163; |
|
This item has no description. |
SC_CP_UTF8 = 65001; |
|
This item has no description. |
SC_CURSORARROW = 2; |
|
This item has no description. |
SC_CURSORNORMAL = -1; |
|
This item has no description. |
SC_CURSORREVERSEARROW = 7; |
|
This item has no description. |
SC_CURSORWAIT = 4; |
|
This item has no description. |
SC_DOCUMENTOPTION_DEFAULT = 0; |
|
This item has no description. |
SC_DOCUMENTOPTION_STYLES_NONE = $1; |
|
This item has no description. |
SC_DOCUMENTOPTION_TEXT_LARGE = $100; |
|
This item has no description. |
SC_EFF_QUALITY_ANTIALIASED = 2; |
|
This item has no description. |
SC_EFF_QUALITY_DEFAULT = 0; |
|
This item has no description. |
SC_EFF_QUALITY_LCD_OPTIMIZED = 3; |
|
This item has no description. |
SC_EFF_QUALITY_MASK = $F; |
|
This item has no description. |
SC_EFF_QUALITY_NON_ANTIALIASED = 1; |
|
This item has no description. |
SC_ELEMENT_CARET = 40; |
|
This item has no description. |
SC_ELEMENT_CARET_ADDITIONAL = 41; |
|
This item has no description. |
SC_ELEMENT_CARET_LINE_BACK = 50; |
|
This item has no description. |
SC_ELEMENT_FOLD_LINE = 80; |
|
This item has no description. |
SC_ELEMENT_HIDDEN_LINE = 81; |
|
This item has no description. |
SC_ELEMENT_HOT_SPOT_ACTIVE = 70; |
|
This item has no description. |
SC_ELEMENT_HOT_SPOT_ACTIVE_BACK = 71; |
|
This item has no description. |
SC_ELEMENT_LIST = 0; |
|
This item has no description. |
SC_ELEMENT_LIST_BACK = 1; |
|
This item has no description. |
SC_ELEMENT_LIST_SELECTED = 2; |
|
This item has no description. |
SC_ELEMENT_LIST_SELECTED_BACK = 3; |
|
This item has no description. |
SC_ELEMENT_SELECTION_ADDITIONAL_BACK = 13; |
|
This item has no description. |
SC_ELEMENT_SELECTION_ADDITIONAL_TEXT = 12; |
|
This item has no description. |
SC_ELEMENT_SELECTION_BACK = 11; |
|
This item has no description. |
SC_ELEMENT_SELECTION_INACTIVE_ADDITIONAL_BACK = 19; |
|
This item has no description. |
SC_ELEMENT_SELECTION_INACTIVE_ADDITIONAL_TEXT = 18; |
|
This item has no description. |
SC_ELEMENT_SELECTION_INACTIVE_BACK = 17; |
|
This item has no description. |
SC_ELEMENT_SELECTION_INACTIVE_TEXT = 16; |
|
This item has no description. |
SC_ELEMENT_SELECTION_SECONDARY_BACK = 15; |
|
This item has no description. |
SC_ELEMENT_SELECTION_SECONDARY_TEXT = 14; |
|
This item has no description. |
SC_ELEMENT_SELECTION_TEXT = 10; |
|
This item has no description. |
SC_ELEMENT_WHITE_SPACE = 60; |
|
This item has no description. |
SC_ELEMENT_WHITE_SPACE_BACK = 61; |
|
This item has no description. |
SC_EOL_CR = 1; |
|
This item has no description. |
SC_EOL_CRLF = 0; |
|
This item has no description. |
SC_EOL_LF = 2; |
|
This item has no description. |
SC_FOLDACTION_CONTRACT = 0; |
|
This item has no description. |
SC_FOLDACTION_CONTRACT_EVERY_LEVEL = 4; |
|
This item has no description. |
SC_FOLDACTION_EXPAND = 1; |
|
This item has no description. |
SC_FOLDACTION_TOGGLE = 2; |
|
This item has no description. |
SC_FOLDDISPLAYTEXT_BOXED = 2; |
|
This item has no description. |
SC_FOLDDISPLAYTEXT_HIDDEN = 0; |
|
This item has no description. |
SC_FOLDDISPLAYTEXT_STANDARD = 1; |
|
This item has no description. |
SC_FOLDFLAG_LEVELNUMBERS = $0040; |
|
This item has no description. |
SC_FOLDFLAG_LINEAFTER_CONTRACTED = $0010; |
|
This item has no description. |
SC_FOLDFLAG_LINEAFTER_EXPANDED = $0008; |
|
This item has no description. |
SC_FOLDFLAG_LINEBEFORE_CONTRACTED = $0004; |
|
This item has no description. |
SC_FOLDFLAG_LINEBEFORE_EXPANDED = $0002; |
|
This item has no description. |
SC_FOLDFLAG_LINESTATE = $0080; |
|
This item has no description. |
SC_FOLDFLAG_NONE = $0000; |
|
This item has no description. |
SC_FOLDLEVELBASE = $400; |
|
This item has no description. |
SC_FOLDLEVELHEADERFLAG = $2000; |
|
This item has no description. |
SC_FOLDLEVELNONE = 0; |
|
This item has no description. |
SC_FOLDLEVELNUMBERMASK = $0FFF; |
|
This item has no description. |
SC_FOLDLEVELWHITEFLAG = $1000; |
|
This item has no description. |
SC_FONT_SIZE_MULTIPLIER = 100; |
|
This item has no description. |
SC_IDLESTYLING_AFTERVISIBLE = 2; |
|
This item has no description. |
SC_IDLESTYLING_ALL = 3; |
|
This item has no description. |
SC_IDLESTYLING_NONE = 0; |
|
This item has no description. |
SC_IDLESTYLING_TOVISIBLE = 1; |
|
This item has no description. |
SC_IME_INLINE = 1; |
|
This item has no description. |
SC_IME_WINDOWED = 0; |
|
This item has no description. |
SC_INDICFLAG_NONE = 0; |
|
This item has no description. |
SC_INDICFLAG_VALUEFORE = 1; |
|
This item has no description. |
SC_INDICVALUEBIT = $1000000; |
|
This item has no description. |
SC_INDICVALUEMASK = $FFFFFF; |
|
This item has no description. |
SC_IV_LOOKBOTH = 3; |
|
This item has no description. |
SC_IV_LOOKFORWARD = 2; |
|
This item has no description. |
SC_IV_NONE = 0; |
|
This item has no description. |
SC_IV_REAL = 1; |
|
This item has no description. |
SC_LASTSTEPINUNDOREDO = $100; |
|
This item has no description. |
SC_LAYER_BASE = 0; |
|
This item has no description. |
SC_LAYER_OVER_TEXT = 2; |
|
This item has no description. |
SC_LAYER_UNDER_TEXT = 1; |
|
This item has no description. |
SC_LINECHARACTERINDEX_NONE = 0; |
|
This item has no description. |
SC_LINECHARACTERINDEX_UTF16 = 2; |
|
This item has no description. |
SC_LINECHARACTERINDEX_UTF32 = 1; |
|
This item has no description. |
SC_LINE_END_TYPE_DEFAULT = 0; |
|
This item has no description. |
SC_LINE_END_TYPE_UNICODE = 1; |
|
This item has no description. |
SC_MARGINOPTION_NONE = 0; |
|
This item has no description. |
SC_MARGINOPTION_SUBLINESELECT = 1; |
|
This item has no description. |
SC_MARGIN_BACK = 2; |
|
This item has no description. |
SC_MARGIN_COLOUR = 6; |
|
This item has no description. |
SC_MARGIN_FORE = 3; |
|
This item has no description. |
SC_MARGIN_NUMBER = 1; |
|
This item has no description. |
SC_MARGIN_RTEXT = 5; |
|
This item has no description. |
SC_MARGIN_SYMBOL = 0; |
|
This item has no description. |
SC_MARGIN_TEXT = 4; |
|
This item has no description. |
SC_MARKNUM_FOLDER = 30; |
|
This item has no description. |
SC_MARKNUM_FOLDEREND = 25; |
|
This item has no description. |
SC_MARKNUM_FOLDERMIDTAIL = 27; |
|
This item has no description. |
SC_MARKNUM_FOLDEROPEN = 31; |
|
This item has no description. |
SC_MARKNUM_FOLDEROPENMID = 26; |
|
This item has no description. |
SC_MARKNUM_FOLDERSUB = 29; |
|
This item has no description. |
SC_MARKNUM_FOLDERTAIL = 28; |
|
This item has no description. |
SC_MARKNUM_HISTORY_MODIFIED = 23; |
|
This item has no description. |
SC_MARKNUM_HISTORY_REVERTED_TO_MODIFIED = 24; |
|
This item has no description. |
SC_MARKNUM_HISTORY_REVERTED_TO_ORIGIN = 21; |
|
This item has no description. |
SC_MARKNUM_HISTORY_SAVED = 22; |
|
This item has no description. |
SC_MARK_ARROW = 2; |
|
This item has no description. |
SC_MARK_ARROWDOWN = 6; |
|
This item has no description. |
SC_MARK_ARROWS = 24; |
|
This item has no description. |
SC_MARK_AVAILABLE = 28; |
|
This item has no description. |
SC_MARK_BACKGROUND = 22; |
|
This item has no description. |
SC_MARK_BAR = 33; |
|
This item has no description. |
SC_MARK_BOOKMARK = 31; |
|
This item has no description. |
SC_MARK_BOXMINUS = 14; |
|
This item has no description. |
SC_MARK_BOXMINUSCONNECTED = 15; |
|
This item has no description. |
SC_MARK_BOXPLUS = 12; |
|
This item has no description. |
SC_MARK_BOXPLUSCONNECTED = 13; |
|
This item has no description. |
SC_MARK_CHARACTER = 10000; |
|
This item has no description. |
SC_MARK_CIRCLE = 0; |
|
This item has no description. |
SC_MARK_CIRCLEMINUS = 20; |
|
This item has no description. |
SC_MARK_CIRCLEMINUSCONNECTED = 21; |
|
This item has no description. |
SC_MARK_CIRCLEPLUS = 18; |
|
This item has no description. |
SC_MARK_CIRCLEPLUSCONNECTED = 19; |
|
This item has no description. |
SC_MARK_DOTDOTDOT = 23; |
|
This item has no description. |
SC_MARK_EMPTY = 5; |
|
This item has no description. |
SC_MARK_FULLRECT = 26; |
|
This item has no description. |
SC_MARK_LCORNER = 10; |
|
This item has no description. |
SC_MARK_LCORNERCURVE = 16; |
|
This item has no description. |
SC_MARK_LEFTRECT = 27; |
|
This item has no description. |
SC_MARK_MINUS = 7; |
|
This item has no description. |
SC_MARK_PIXMAP = 25; |
|
This item has no description. |
SC_MARK_PLUS = 8; |
|
This item has no description. |
SC_MARK_RGBAIMAGE = 30; |
|
This item has no description. |
SC_MARK_ROUNDRECT = 1; |
|
This item has no description. |
SC_MARK_SHORTARROW = 4; |
|
This item has no description. |
SC_MARK_SMALLRECT = 3; |
|
This item has no description. |
SC_MARK_TCORNER = 11; |
|
This item has no description. |
SC_MARK_TCORNERCURVE = 17; |
|
This item has no description. |
SC_MARK_UNDERLINE = 29; |
|
This item has no description. |
SC_MARK_VERTICALBOOKMARK = 32; |
|
This item has no description. |
SC_MARK_VLINE = 9; |
|
This item has no description. |
SC_MASK_FOLDERS = $FE000000; |
|
This item has no description. |
SC_MASK_HISTORY = $01E00000; |
|
This item has no description. |
SC_MAX_MARGIN = 4; |
|
This item has no description. |
SC_MODEVENTMASKALL = $7FFFFF; |
|
This item has no description. |
SC_MOD_BEFOREDELETE = $800; |
|
This item has no description. |
SC_MOD_BEFOREINSERT = $400; |
|
This item has no description. |
SC_MOD_CHANGEANNOTATION = $20000; |
|
This item has no description. |
SC_MOD_CHANGEEOLANNOTATION = $400000; |
|
This item has no description. |
SC_MOD_CHANGEFOLD = $8; |
|
This item has no description. |
SC_MOD_CHANGEINDICATOR = $4000; |
|
This item has no description. |
SC_MOD_CHANGELINESTATE = $8000; |
|
This item has no description. |
SC_MOD_CHANGEMARGIN = $10000; |
|
This item has no description. |
SC_MOD_CHANGEMARKER = $200; |
|
This item has no description. |
SC_MOD_CHANGESTYLE = $4; |
|
This item has no description. |
SC_MOD_CHANGETABSTOPS = $200000; |
|
This item has no description. |
SC_MOD_CONTAINER = $40000; |
|
This item has no description. |
SC_MOD_DELETETEXT = $2; |
|
This item has no description. |
SC_MOD_INSERTCHECK = $100000; |
|
This item has no description. |
SC_MOD_INSERTTEXT = $1; |
|
This item has no description. |
SC_MOD_LEXERSTATE = $80000; |
|
This item has no description. |
SC_MOD_NONE = 0; |
|
This item has no description. |
SC_MULTIAUTOC_EACH = 1; |
|
This item has no description. |
SC_MULTIAUTOC_ONCE = 0; |
|
This item has no description. |
SC_MULTILINEUNDOREDO = $1000; |
|
This item has no description. |
SC_MULTIPASTE_EACH = 1; |
|
This item has no description. |
SC_MULTIPASTE_ONCE = 0; |
|
This item has no description. |
SC_MULTISTEPUNDOREDO = $80; |
|
This item has no description. |
SC_ORDER_CUSTOM = 2; |
|
This item has no description. |
SC_ORDER_PERFORMSORT = 1; |
|
This item has no description. |
SC_ORDER_PRESORTED = 0; |
|
This item has no description. |
SC_PERFORMED_REDO = $40; |
|
This item has no description. |
SC_PERFORMED_UNDO = $20; |
|
This item has no description. |
SC_PERFORMED_USER = $10; |
|
This item has no description. |
SC_PHASES_MULTIPLE = 2; |
|
This item has no description. |
SC_PHASES_ONE = 0; |
|
This item has no description. |
SC_PHASES_TWO = 1; |
|
This item has no description. |
SC_POPUP_ALL = 1; |
|
This item has no description. |
SC_POPUP_NEVER = 0; |
|
This item has no description. |
SC_POPUP_TEXT = 2; |
|
This item has no description. |
SC_PRINT_BLACKONWHITE = 2; |
|
This item has no description. |
SC_PRINT_COLOURONWHITE = 3; |
|
This item has no description. |
SC_PRINT_COLOURONWHITEDEFAULTBG = 4; |
|
This item has no description. |
SC_PRINT_INVERTLIGHT = 1; |
|
This item has no description. |
SC_PRINT_NORMAL = 0; |
|
This item has no description. |
SC_PRINT_SCREENCOLOURS = 5; |
|
This item has no description. |
SC_REPRESENTATION_BLOB = 1; |
|
This item has no description. |
SC_REPRESENTATION_COLOUR = $10; |
|
This item has no description. |
SC_REPRESENTATION_PLAIN = 0; |
|
This item has no description. |
SC_SEARCHRESULT_LINEBUFFERMAXLENGTH = 2048; |
|
This item has no description. |
SC_SEL_LINES = 2; |
|
This item has no description. |
SC_SEL_RECTANGLE = 1; |
|
This item has no description. |
SC_SEL_STREAM = 0; |
|
This item has no description. |
SC_SEL_THIN = 3; |
|
This item has no description. |
SC_STARTACTION = $2000; |
|
This item has no description. |
SC_STATUS_BADALLOC = 2; |
|
This item has no description. |
SC_STATUS_FAILURE = 1; |
|
This item has no description. |
SC_STATUS_OK = 0; |
|
This item has no description. |
SC_STATUS_WARN_REGEX = 1001; |
|
This item has no description. |
SC_STATUS_WARN_START = 1000; |
|
This item has no description. |
SC_STRETCH_CONDENSED = 3; |
|
This item has no description. |
SC_STRETCH_EXPANDED = 7; |
|
This item has no description. |
SC_STRETCH_EXTRA_CONDENSED = 2; |
|
This item has no description. |
SC_STRETCH_EXTRA_EXPANDED = 8; |
|
This item has no description. |
SC_STRETCH_NORMAL = 5; |
|
This item has no description. |
SC_STRETCH_SEMI_CONDENSED = 4; |
|
This item has no description. |
SC_STRETCH_SEMI_EXPANDED = 6; |
|
This item has no description. |
SC_STRETCH_ULTRA_CONDENSED = 1; |
|
This item has no description. |
SC_STRETCH_ULTRA_EXPANDED = 9; |
|
This item has no description. |
SC_SUPPORTS_FRACTIONAL_STROKE_WIDTH = 2; |
|
This item has no description. |
SC_SUPPORTS_LINE_DRAWS_FINAL = 0; |
|
This item has no description. |
SC_SUPPORTS_PIXEL_DIVISIONS = 1; |
|
This item has no description. |
SC_SUPPORTS_PIXEL_MODIFICATION = 4; |
|
This item has no description. |
SC_SUPPORTS_THREAD_SAFE_MEASURE_WIDTHS = 5; |
|
This item has no description. |
SC_SUPPORTS_TRANSLUCENT_STROKE = 3; |
|
This item has no description. |
SC_TECHNOLOGY_DEFAULT = 0; |
|
This item has no description. |
SC_TECHNOLOGY_DIRECTWRITE = 1; |
|
This item has no description. |
SC_TECHNOLOGY_DIRECTWRITEDC = 3; |
|
This item has no description. |
SC_TECHNOLOGY_DIRECTWRITERETAIN = 2; |
|
This item has no description. |
SC_TECHNOLOGY_DIRECT_WRITE_1 = 4; |
|
This item has no description. |
SC_TIME_FOREVER = 10000000; |
|
This item has no description. |
SC_TYPE_BOOLEAN = 0; |
|
This item has no description. |
SC_TYPE_INTEGER = 1; |
|
This item has no description. |
SC_TYPE_STRING = 2; |
|
This item has no description. |
SC_UNDO_SELECTION_HISTORY_DISABLED = 0; |
|
This item has no description. |
SC_UNDO_SELECTION_HISTORY_ENABLED = 1; |
|
This item has no description. |
SC_UNDO_SELECTION_HISTORY_SCROLL = 2; |
|
This item has no description. |
SC_UPDATE_CONTENT = 1; |
|
This item has no description. |
SC_UPDATE_H_SCROLL = 8; |
|
This item has no description. |
SC_UPDATE_SELECTION = 2; |
|
This item has no description. |
SC_UPDATE_V_SCROLL = 4; |
|
This item has no description. |
SC_WEIGHT_BOLD = 700; |
|
This item has no description. |
SC_WEIGHT_NORMAL = 400; |
|
This item has no description. |
SC_WEIGHT_SEMIBOLD = 600; |
|
This item has no description. |
SC_WRAPINDENT_DEEPINDENT = 3; |
|
This item has no description. |
SC_WRAPINDENT_FIXED = 0; |
|
This item has no description. |
SC_WRAPINDENT_INDENT = 2; |
|
This item has no description. |
SC_WRAPINDENT_SAME = 1; |
|
This item has no description. |
SC_WRAPVISUALFLAGLOC_DEFAULT = $0000; |
|
This item has no description. |
SC_WRAPVISUALFLAGLOC_END_BY_TEXT = $0001; |
|
This item has no description. |
SC_WRAPVISUALFLAGLOC_START_BY_TEXT = $0002; |
|
This item has no description. |
SC_WRAPVISUALFLAG_END = $0001; |
|
This item has no description. |
SC_WRAPVISUALFLAG_MARGIN = $0004; |
|
This item has no description. |
SC_WRAPVISUALFLAG_NONE = $0000; |
|
This item has no description. |
SC_WRAPVISUALFLAG_START = $0002; |
|
This item has no description. |
SC_WRAP_CHAR = 2; |
|
This item has no description. |
SC_WRAP_NONE = 0; |
|
This item has no description. |
SC_WRAP_WHITESPACE = 3; |
|
This item has no description. |
SC_WRAP_WORD = 1; |
|
This item has no description. |
SECOND_VIEW = 2; |
|
This item has no description. |
STATUSBAR_CUR_POS = 2; |
|
This item has no description. |
STATUSBAR_DOC_SIZE = 1; |
|
This item has no description. |
STATUSBAR_DOC_TYPE = 0; |
|
This item has no description. |
STATUSBAR_EOF_FORMAT = 3; |
|
This item has no description. |
STATUSBAR_TYPING_MODE = 5; |
|
This item has no description. |
STATUSBAR_UNICODE_TYPE = 4; |
|
This item has no description. |
STYLE_BRACEBAD = 35; |
|
This item has no description. |
STYLE_BRACELIGHT = 34; |
|
This item has no description. |
STYLE_CALLTIP = 38; |
|
This item has no description. |
STYLE_CONTROLCHAR = 36; |
|
This item has no description. |
STYLE_DEFAULT = 32; |
|
This item has no description. |
STYLE_FOLDDISPLAYTEXT = 39; |
|
This item has no description. |
STYLE_INDENTGUIDE = 37; |
|
This item has no description. |
STYLE_LASTPREDEFINED = 39; |
|
This item has no description. |
STYLE_LINENUMBER = 33; |
|
This item has no description. |
STYLE_MAX = 255; |
|
This item has no description. |
SUB_VIEW = 1; |
|
This item has no description. |
UNDO_MAY_COALESCE = 1; |
|
This item has no description. |
UNDO_NONE = 0; |
|
This item has no description. |
VAR_NOT_RECOGNIZED = 0; |
|
This item has no description. |
VISIBLE_SLOP = $01; |
|
This item has no description. |
VISIBLE_STRICT = $04; |
|
This item has no description. |
WM_CLOSE_USERDEFINE_DLG = (SCINTILLA_USER + 3); |
|
This item has no description. |
WM_DOCK_USERDEFINE_DLG = (SCINTILLA_USER + 1); |
|
This item has no description. |
WM_DOOPEN = (SCINTILLA_USER + 8); |
|
This item has no description. |
WM_FINDALL_INCURRENTDOC = (SCINTILLA_USER + 11); |
|
This item has no description. |
WM_FINDALL_INCURRENTFINDER = (SCINTILLA_USER + 14); |
|
This item has no description. |
WM_FINDALL_INOPENEDDOC = (SCINTILLA_USER + 7); |
|
This item has no description. |
WM_FINDINFILES = (SCINTILLA_USER + 9); |
|
This item has no description. |
WM_FINDINPROJECTS = (SCINTILLA_USER + 15); |
|
This item has no description. |
WM_FRSAVE_INT = (SCINTILLA_USER + 12); |
|
This item has no description. |
WM_FRSAVE_STR = (SCINTILLA_USER + 13); |
|
This item has no description. |
WM_ISCURRENTMACRORECORDED = (MACRO_USER + 01); |
|
This item has no description. |
WM_MACRODLGRUNMACRO = (MACRO_USER + 02); |
|
This item has no description. |
WM_REMOVE_USERLANG = (SCINTILLA_USER + 4); |
|
This item has no description. |
WM_RENAME_USERLANG = (SCINTILLA_USER + 5); |
|
This item has no description. |
WM_REPLACEALL_INOPENEDDOC = (SCINTILLA_USER + 6); |
|
This item has no description. |
WM_REPLACEINFILES = (SCINTILLA_USER + 10); |
|
This item has no description. |
WM_REPLACEINPROJECTS = (SCINTILLA_USER + 16); |
|
This item has no description. |
WM_UNDOCK_USERDEFINE_DLG = (SCINTILLA_USER + 2); |
|
This item has no description. |