wxStyledTextCtrl

See external documentation: wxStyledTextCtrl.

See external documentation: wxStyledTextCtrl.

This class is derived (and can use functions) from:
wxControl
wxWindow
wxEvtHandler

Types


wxStyledTextCtrl() = wx:wx_object()

Functions


new() -> wxStyledTextCtrl()

See external documentation.

new(Parent) -> wxStyledTextCtrl()

  • Parent = wxWindow() (see module wxWindow)

Equivalent to new(Parent, []).

new(Parent, Option::[Option]) -> wxStyledTextCtrl()

  • Parent = wxWindow() (see module wxWindow)
  • Option = {id, integer()} | {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {style, integer()}

See external documentation.

create(This, Parent) -> boolean()

  • This = wxStyledTextCtrl()
  • Parent = wxWindow() (see module wxWindow)

Equivalent to create(This, Parent, []).

create(This, Parent, Option::[Option]) -> boolean()

  • This = wxStyledTextCtrl()
  • Parent = wxWindow() (see module wxWindow)
  • Option = {id, integer()} | {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {style, integer()}

See external documentation.

addText(This, Text) -> ok

  • This = wxStyledTextCtrl()
  • Text = chardata() (see module unicode)

See external documentation.

addStyledText(This, Data) -> ok

  • This = wxStyledTextCtrl()
  • Data = wx_object() (see module wx)

See external documentation.

insertText(This, Pos, Text) -> ok

  • This = wxStyledTextCtrl()
  • Pos = integer()
  • Text = chardata() (see module unicode)

See external documentation.

clearAll(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

clearDocumentStyle(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

getLength(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

getCharAt(This, Pos) -> integer()

  • This = wxStyledTextCtrl()
  • Pos = integer()

See external documentation.

getCurrentPos(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

getAnchor(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

getStyleAt(This, Pos) -> integer()

  • This = wxStyledTextCtrl()
  • Pos = integer()

See external documentation.

redo(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

setUndoCollection(This, CollectUndo) -> ok

  • This = wxStyledTextCtrl()
  • CollectUndo = boolean()

See external documentation.

selectAll(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

setSavePoint(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

getStyledText(This, StartPos, EndPos) -> wx_object() (see module wx)

  • This = wxStyledTextCtrl()
  • StartPos = integer()
  • EndPos = integer()

See external documentation.

canRedo(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

markerLineFromHandle(This, Handle) -> integer()

  • This = wxStyledTextCtrl()
  • Handle = integer()

See external documentation.

markerDeleteHandle(This, Handle) -> ok

  • This = wxStyledTextCtrl()
  • Handle = integer()

See external documentation.

getUndoCollection(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

getViewWhiteSpace(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

setViewWhiteSpace(This, ViewWS) -> ok

  • This = wxStyledTextCtrl()
  • ViewWS = integer()

See external documentation.

positionFromPoint(This, Pt) -> integer()

  • This = wxStyledTextCtrl()
  • Pt = {X::integer(), Y::integer()}

See external documentation.

positionFromPointClose(This, X, Y) -> integer()

  • This = wxStyledTextCtrl()
  • X = integer()
  • Y = integer()

See external documentation.

gotoLine(This, Line) -> ok

  • This = wxStyledTextCtrl()
  • Line = integer()

See external documentation.

gotoPos(This, Pos) -> ok

  • This = wxStyledTextCtrl()
  • Pos = integer()

See external documentation.

setAnchor(This, PosAnchor) -> ok

  • This = wxStyledTextCtrl()
  • PosAnchor = integer()

See external documentation.

getCurLine(This) -> Result

  • Result = {Res::charlist() (see module unicode), LinePos::integer()}
  • This = wxStyledTextCtrl()

See external documentation.

getEndStyled(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

convertEOLs(This, EolMode) -> ok

  • This = wxStyledTextCtrl()
  • EolMode = integer()

See external documentation.

getEOLMode(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

setEOLMode(This, EolMode) -> ok

  • This = wxStyledTextCtrl()
  • EolMode = integer()

See external documentation.

startStyling(This, Pos, Mask) -> ok

  • This = wxStyledTextCtrl()
  • Pos = integer()
  • Mask = integer()

See external documentation.

setStyling(This, Length, Style) -> ok

  • This = wxStyledTextCtrl()
  • Length = integer()
  • Style = integer()

See external documentation.

getBufferedDraw(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

setBufferedDraw(This, Buffered) -> ok

  • This = wxStyledTextCtrl()
  • Buffered = boolean()

See external documentation.

setTabWidth(This, TabWidth) -> ok

  • This = wxStyledTextCtrl()
  • TabWidth = integer()

See external documentation.

getTabWidth(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

setCodePage(This, CodePage) -> ok

  • This = wxStyledTextCtrl()
  • CodePage = integer()

See external documentation.

markerDefine(This, MarkerNumber, MarkerSymbol) -> ok

  • This = wxStyledTextCtrl()
  • MarkerNumber = integer()
  • MarkerSymbol = integer()

markerDefine(This, MarkerNumber, MarkerSymbol, Option::[Option]) -> ok

  • This = wxStyledTextCtrl()
  • MarkerNumber = integer()
  • MarkerSymbol = integer()
  • Option = {foreground, wx_colour() (see module wx)} | {background, wx_colour() (see module wx)}

See external documentation.

markerSetForeground(This, MarkerNumber, Fore) -> ok

  • This = wxStyledTextCtrl()
  • MarkerNumber = integer()
  • Fore = wx_colour() (see module wx)

See external documentation.

markerSetBackground(This, MarkerNumber, Back) -> ok

  • This = wxStyledTextCtrl()
  • MarkerNumber = integer()
  • Back = wx_colour() (see module wx)

See external documentation.

markerAdd(This, Line, MarkerNumber) -> integer()

  • This = wxStyledTextCtrl()
  • Line = integer()
  • MarkerNumber = integer()

See external documentation.

markerDelete(This, Line, MarkerNumber) -> ok

  • This = wxStyledTextCtrl()
  • Line = integer()
  • MarkerNumber = integer()

See external documentation.

markerDeleteAll(This, MarkerNumber) -> ok

  • This = wxStyledTextCtrl()
  • MarkerNumber = integer()

See external documentation.

markerGet(This, Line) -> integer()

  • This = wxStyledTextCtrl()
  • Line = integer()

See external documentation.

markerNext(This, LineStart, MarkerMask) -> integer()

  • This = wxStyledTextCtrl()
  • LineStart = integer()
  • MarkerMask = integer()

See external documentation.

markerPrevious(This, LineStart, MarkerMask) -> integer()

  • This = wxStyledTextCtrl()
  • LineStart = integer()
  • MarkerMask = integer()

See external documentation.

markerDefineBitmap(This, MarkerNumber, Bmp) -> ok

  • This = wxStyledTextCtrl()
  • MarkerNumber = integer()
  • Bmp = wxBitmap() (see module wxBitmap)

See external documentation.

markerAddSet(This, Line, Set) -> ok

  • This = wxStyledTextCtrl()
  • Line = integer()
  • Set = integer()

See external documentation.

markerSetAlpha(This, MarkerNumber, Alpha) -> ok

  • This = wxStyledTextCtrl()
  • MarkerNumber = integer()
  • Alpha = integer()

See external documentation.

setMarginType(This, Margin, MarginType) -> ok

  • This = wxStyledTextCtrl()
  • Margin = integer()
  • MarginType = integer()

See external documentation.

getMarginType(This, Margin) -> integer()

  • This = wxStyledTextCtrl()
  • Margin = integer()

See external documentation.

setMarginWidth(This, Margin, PixelWidth) -> ok

  • This = wxStyledTextCtrl()
  • Margin = integer()
  • PixelWidth = integer()

See external documentation.

getMarginWidth(This, Margin) -> integer()

  • This = wxStyledTextCtrl()
  • Margin = integer()

See external documentation.

setMarginMask(This, Margin, Mask) -> ok

  • This = wxStyledTextCtrl()
  • Margin = integer()
  • Mask = integer()

See external documentation.

getMarginMask(This, Margin) -> integer()

  • This = wxStyledTextCtrl()
  • Margin = integer()

See external documentation.

setMarginSensitive(This, Margin, Sensitive) -> ok

  • This = wxStyledTextCtrl()
  • Margin = integer()
  • Sensitive = boolean()

See external documentation.

getMarginSensitive(This, Margin) -> boolean()

  • This = wxStyledTextCtrl()
  • Margin = integer()

See external documentation.

styleClearAll(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

styleSetForeground(This, Style, Fore) -> ok

  • This = wxStyledTextCtrl()
  • Style = integer()
  • Fore = wx_colour() (see module wx)

See external documentation.

styleSetBackground(This, Style, Back) -> ok

  • This = wxStyledTextCtrl()
  • Style = integer()
  • Back = wx_colour() (see module wx)

See external documentation.

styleSetBold(This, Style, Bold) -> ok

  • This = wxStyledTextCtrl()
  • Style = integer()
  • Bold = boolean()

See external documentation.

styleSetItalic(This, Style, Italic) -> ok

  • This = wxStyledTextCtrl()
  • Style = integer()
  • Italic = boolean()

See external documentation.

styleSetSize(This, Style, SizePoints) -> ok

  • This = wxStyledTextCtrl()
  • Style = integer()
  • SizePoints = integer()

See external documentation.

styleSetFaceName(This, Style, FontName) -> ok

  • This = wxStyledTextCtrl()
  • Style = integer()
  • FontName = chardata() (see module unicode)

See external documentation.

styleSetEOLFilled(This, Style, Filled) -> ok

  • This = wxStyledTextCtrl()
  • Style = integer()
  • Filled = boolean()

See external documentation.

styleResetDefault(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

styleSetUnderline(This, Style, Underline) -> ok

  • This = wxStyledTextCtrl()
  • Style = integer()
  • Underline = boolean()

See external documentation.

styleSetCase(This, Style, CaseForce) -> ok

  • This = wxStyledTextCtrl()
  • Style = integer()
  • CaseForce = integer()

See external documentation.

styleSetHotSpot(This, Style, Hotspot) -> ok

  • This = wxStyledTextCtrl()
  • Style = integer()
  • Hotspot = boolean()

See external documentation.

setSelForeground(This, UseSetting, Fore) -> ok

  • This = wxStyledTextCtrl()
  • UseSetting = boolean()
  • Fore = wx_colour() (see module wx)

See external documentation.

setSelBackground(This, UseSetting, Back) -> ok

  • This = wxStyledTextCtrl()
  • UseSetting = boolean()
  • Back = wx_colour() (see module wx)

See external documentation.

getSelAlpha(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

setSelAlpha(This, Alpha) -> ok

  • This = wxStyledTextCtrl()
  • Alpha = integer()

See external documentation.

setCaretForeground(This, Fore) -> ok

  • This = wxStyledTextCtrl()
  • Fore = wx_colour() (see module wx)

See external documentation.

cmdKeyAssign(This, Key, Modifiers, Cmd) -> ok

  • This = wxStyledTextCtrl()
  • Key = integer()
  • Modifiers = integer()
  • Cmd = integer()

See external documentation.

cmdKeyClear(This, Key, Modifiers) -> ok

  • This = wxStyledTextCtrl()
  • Key = integer()
  • Modifiers = integer()

See external documentation.

cmdKeyClearAll(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

setStyleBytes(This, Length) -> integer()

  • This = wxStyledTextCtrl()
  • Length = integer()

See external documentation.

styleSetVisible(This, Style, Visible) -> ok

  • This = wxStyledTextCtrl()
  • Style = integer()
  • Visible = boolean()

See external documentation.

getCaretPeriod(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

setCaretPeriod(This, PeriodMilliseconds) -> ok

  • This = wxStyledTextCtrl()
  • PeriodMilliseconds = integer()

See external documentation.

setWordChars(This, Characters) -> ok

  • This = wxStyledTextCtrl()
  • Characters = chardata() (see module unicode)

See external documentation.

beginUndoAction(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

endUndoAction(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

indicatorSetStyle(This, Indic, Style) -> ok

  • This = wxStyledTextCtrl()
  • Indic = integer()
  • Style = integer()

See external documentation.

indicatorGetStyle(This, Indic) -> integer()

  • This = wxStyledTextCtrl()
  • Indic = integer()

See external documentation.

indicatorSetForeground(This, Indic, Fore) -> ok

  • This = wxStyledTextCtrl()
  • Indic = integer()
  • Fore = wx_colour() (see module wx)

See external documentation.

indicatorGetForeground(This, Indic) -> wx_colour4() (see module wx)

  • This = wxStyledTextCtrl()
  • Indic = integer()

See external documentation.

setWhitespaceForeground(This, UseSetting, Fore) -> ok

  • This = wxStyledTextCtrl()
  • UseSetting = boolean()
  • Fore = wx_colour() (see module wx)

See external documentation.

setWhitespaceBackground(This, UseSetting, Back) -> ok

  • This = wxStyledTextCtrl()
  • UseSetting = boolean()
  • Back = wx_colour() (see module wx)

See external documentation.

getStyleBits(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

setLineState(This, Line, State) -> ok

  • This = wxStyledTextCtrl()
  • Line = integer()
  • State = integer()

See external documentation.

getLineState(This, Line) -> integer()

  • This = wxStyledTextCtrl()
  • Line = integer()

See external documentation.

getMaxLineState(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

getCaretLineVisible(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

setCaretLineVisible(This, Show) -> ok

  • This = wxStyledTextCtrl()
  • Show = boolean()

See external documentation.

getCaretLineBackground(This) -> wx_colour4() (see module wx)

  • This = wxStyledTextCtrl()

See external documentation.

setCaretLineBackground(This, Back) -> ok

  • This = wxStyledTextCtrl()
  • Back = wx_colour() (see module wx)

See external documentation.

autoCompShow(This, LenEntered, ItemList) -> ok

  • This = wxStyledTextCtrl()
  • LenEntered = integer()
  • ItemList = chardata() (see module unicode)

See external documentation.

autoCompCancel(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

autoCompActive(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

autoCompPosStart(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

autoCompComplete(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

autoCompStops(This, CharacterSet) -> ok

  • This = wxStyledTextCtrl()
  • CharacterSet = chardata() (see module unicode)

See external documentation.

autoCompSetSeparator(This, SeparatorCharacter) -> ok

  • This = wxStyledTextCtrl()
  • SeparatorCharacter = integer()

See external documentation.

autoCompGetSeparator(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

autoCompSelect(This, Text) -> ok

  • This = wxStyledTextCtrl()
  • Text = chardata() (see module unicode)

See external documentation.

autoCompSetCancelAtStart(This, Cancel) -> ok

  • This = wxStyledTextCtrl()
  • Cancel = boolean()

See external documentation.

autoCompGetCancelAtStart(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

autoCompSetFillUps(This, CharacterSet) -> ok

  • This = wxStyledTextCtrl()
  • CharacterSet = chardata() (see module unicode)

See external documentation.

autoCompSetChooseSingle(This, ChooseSingle) -> ok

  • This = wxStyledTextCtrl()
  • ChooseSingle = boolean()

See external documentation.

autoCompGetChooseSingle(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

autoCompSetIgnoreCase(This, IgnoreCase) -> ok

  • This = wxStyledTextCtrl()
  • IgnoreCase = boolean()

See external documentation.

autoCompGetIgnoreCase(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

userListShow(This, ListType, ItemList) -> ok

  • This = wxStyledTextCtrl()
  • ListType = integer()
  • ItemList = chardata() (see module unicode)

See external documentation.

autoCompSetAutoHide(This, AutoHide) -> ok

  • This = wxStyledTextCtrl()
  • AutoHide = boolean()

See external documentation.

autoCompGetAutoHide(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

autoCompSetDropRestOfWord(This, DropRestOfWord) -> ok

  • This = wxStyledTextCtrl()
  • DropRestOfWord = boolean()

See external documentation.

autoCompGetDropRestOfWord(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

registerImage(This, Type, Bmp) -> ok

  • This = wxStyledTextCtrl()
  • Type = integer()
  • Bmp = wxBitmap() (see module wxBitmap)

See external documentation.

clearRegisteredImages(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

autoCompGetTypeSeparator(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

autoCompSetTypeSeparator(This, SeparatorCharacter) -> ok

  • This = wxStyledTextCtrl()
  • SeparatorCharacter = integer()

See external documentation.

autoCompSetMaxWidth(This, CharacterCount) -> ok

  • This = wxStyledTextCtrl()
  • CharacterCount = integer()

See external documentation.

autoCompGetMaxWidth(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

autoCompSetMaxHeight(This, RowCount) -> ok

  • This = wxStyledTextCtrl()
  • RowCount = integer()

See external documentation.

autoCompGetMaxHeight(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

setIndent(This, IndentSize) -> ok

  • This = wxStyledTextCtrl()
  • IndentSize = integer()

See external documentation.

getIndent(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

setUseTabs(This, UseTabs) -> ok

  • This = wxStyledTextCtrl()
  • UseTabs = boolean()

See external documentation.

getUseTabs(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

setLineIndentation(This, Line, IndentSize) -> ok

  • This = wxStyledTextCtrl()
  • Line = integer()
  • IndentSize = integer()

See external documentation.

getLineIndentation(This, Line) -> integer()

  • This = wxStyledTextCtrl()
  • Line = integer()

See external documentation.

getLineIndentPosition(This, Line) -> integer()

  • This = wxStyledTextCtrl()
  • Line = integer()

See external documentation.

getColumn(This, Pos) -> integer()

  • This = wxStyledTextCtrl()
  • Pos = integer()

See external documentation.

setUseHorizontalScrollBar(This, Show) -> ok

  • This = wxStyledTextCtrl()
  • Show = boolean()

See external documentation.

getUseHorizontalScrollBar(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

setIndentationGuides(This, Show) -> ok

  • This = wxStyledTextCtrl()
  • Show = boolean()

See external documentation.

getIndentationGuides(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

setHighlightGuide(This, Column) -> ok

  • This = wxStyledTextCtrl()
  • Column = integer()

See external documentation.

getHighlightGuide(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

getLineEndPosition(This, Line) -> integer()

  • This = wxStyledTextCtrl()
  • Line = integer()

See external documentation.

getCodePage(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

getCaretForeground(This) -> wx_colour4() (see module wx)

  • This = wxStyledTextCtrl()

See external documentation.

getReadOnly(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

setCurrentPos(This, Pos) -> ok

  • This = wxStyledTextCtrl()
  • Pos = integer()

See external documentation.

setSelectionStart(This, Pos) -> ok

  • This = wxStyledTextCtrl()
  • Pos = integer()

See external documentation.

getSelectionStart(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

setSelectionEnd(This, Pos) -> ok

  • This = wxStyledTextCtrl()
  • Pos = integer()

See external documentation.

getSelectionEnd(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

setPrintMagnification(This, Magnification) -> ok

  • This = wxStyledTextCtrl()
  • Magnification = integer()

See external documentation.

getPrintMagnification(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

setPrintColourMode(This, Mode) -> ok

  • This = wxStyledTextCtrl()
  • Mode = integer()

See external documentation.

getPrintColourMode(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

findText(This, MinPos, MaxPos, Text) -> integer()

  • This = wxStyledTextCtrl()
  • MinPos = integer()
  • MaxPos = integer()
  • Text = chardata() (see module unicode)

findText(This, MinPos, MaxPos, Text, Option::[Option]) -> integer()

  • This = wxStyledTextCtrl()
  • MinPos = integer()
  • MaxPos = integer()
  • Text = chardata() (see module unicode)
  • Option = {flags, integer()}

See external documentation.

formatRange(This, DoDraw, StartPos, EndPos, Draw, Target, RenderRect, PageRect) -> integer()

  • This = wxStyledTextCtrl()
  • DoDraw = boolean()
  • StartPos = integer()
  • EndPos = integer()
  • Draw = wxDC() (see module wxDC)
  • Target = wxDC() (see module wxDC)
  • RenderRect = {X::integer(), Y::integer(), W::integer(), H::integer()}
  • PageRect = {X::integer(), Y::integer(), W::integer(), H::integer()}

See external documentation.

getFirstVisibleLine(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

getLine(This, Line) -> charlist() (see module unicode)

  • This = wxStyledTextCtrl()
  • Line = integer()

See external documentation.

getLineCount(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

setMarginLeft(This, PixelWidth) -> ok

  • This = wxStyledTextCtrl()
  • PixelWidth = integer()

See external documentation.

getMarginLeft(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

setMarginRight(This, PixelWidth) -> ok

  • This = wxStyledTextCtrl()
  • PixelWidth = integer()

See external documentation.

getMarginRight(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

getModify(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

setSelection(This, Start, End) -> ok

  • This = wxStyledTextCtrl()
  • Start = integer()
  • End = integer()

See external documentation.

getSelectedText(This) -> charlist() (see module unicode)

  • This = wxStyledTextCtrl()

See external documentation.

getTextRange(This, StartPos, EndPos) -> charlist() (see module unicode)

  • This = wxStyledTextCtrl()
  • StartPos = integer()
  • EndPos = integer()

See external documentation.

hideSelection(This, Normal) -> ok

  • This = wxStyledTextCtrl()
  • Normal = boolean()

See external documentation.

lineFromPosition(This, Pos) -> integer()

  • This = wxStyledTextCtrl()
  • Pos = integer()

See external documentation.

positionFromLine(This, Line) -> integer()

  • This = wxStyledTextCtrl()
  • Line = integer()

See external documentation.

lineScroll(This, Columns, Lines) -> ok

  • This = wxStyledTextCtrl()
  • Columns = integer()
  • Lines = integer()

See external documentation.

ensureCaretVisible(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

replaceSelection(This, Text) -> ok

  • This = wxStyledTextCtrl()
  • Text = chardata() (see module unicode)

See external documentation.

setReadOnly(This, ReadOnly) -> ok

  • This = wxStyledTextCtrl()
  • ReadOnly = boolean()

See external documentation.

canPaste(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

canUndo(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

emptyUndoBuffer(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

undo(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

cut(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

copy(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

paste(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

clear(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

setText(This, Text) -> ok

  • This = wxStyledTextCtrl()
  • Text = chardata() (see module unicode)

See external documentation.

getText(This) -> charlist() (see module unicode)

  • This = wxStyledTextCtrl()

See external documentation.

getTextLength(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

getOvertype(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

setCaretWidth(This, PixelWidth) -> ok

  • This = wxStyledTextCtrl()
  • PixelWidth = integer()

See external documentation.

getCaretWidth(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

setTargetStart(This, Pos) -> ok

  • This = wxStyledTextCtrl()
  • Pos = integer()

See external documentation.

getTargetStart(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

setTargetEnd(This, Pos) -> ok

  • This = wxStyledTextCtrl()
  • Pos = integer()

See external documentation.

getTargetEnd(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

replaceTarget(This, Text) -> integer()

  • This = wxStyledTextCtrl()
  • Text = chardata() (see module unicode)

See external documentation.

searchInTarget(This, Text) -> integer()

  • This = wxStyledTextCtrl()
  • Text = chardata() (see module unicode)

See external documentation.

setSearchFlags(This, Flags) -> ok

  • This = wxStyledTextCtrl()
  • Flags = integer()

See external documentation.

getSearchFlags(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

callTipShow(This, Pos, Definition) -> ok

  • This = wxStyledTextCtrl()
  • Pos = integer()
  • Definition = chardata() (see module unicode)

See external documentation.

callTipCancel(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

callTipActive(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

callTipPosAtStart(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

callTipSetHighlight(This, Start, End) -> ok

  • This = wxStyledTextCtrl()
  • Start = integer()
  • End = integer()

See external documentation.

callTipSetBackground(This, Back) -> ok

  • This = wxStyledTextCtrl()
  • Back = wx_colour() (see module wx)

See external documentation.

callTipSetForeground(This, Fore) -> ok

  • This = wxStyledTextCtrl()
  • Fore = wx_colour() (see module wx)

See external documentation.

callTipSetForegroundHighlight(This, Fore) -> ok

  • This = wxStyledTextCtrl()
  • Fore = wx_colour() (see module wx)

See external documentation.

callTipUseStyle(This, TabSize) -> ok

  • This = wxStyledTextCtrl()
  • TabSize = integer()

See external documentation.

visibleFromDocLine(This, Line) -> integer()

  • This = wxStyledTextCtrl()
  • Line = integer()

See external documentation.

docLineFromVisible(This, LineDisplay) -> integer()

  • This = wxStyledTextCtrl()
  • LineDisplay = integer()

See external documentation.

wrapCount(This, Line) -> integer()

  • This = wxStyledTextCtrl()
  • Line = integer()

See external documentation.

setFoldLevel(This, Line, Level) -> ok

  • This = wxStyledTextCtrl()
  • Line = integer()
  • Level = integer()

See external documentation.

getFoldLevel(This, Line) -> integer()

  • This = wxStyledTextCtrl()
  • Line = integer()

See external documentation.

getLastChild(This, Line, Level) -> integer()

  • This = wxStyledTextCtrl()
  • Line = integer()
  • Level = integer()

See external documentation.

getFoldParent(This, Line) -> integer()

  • This = wxStyledTextCtrl()
  • Line = integer()

See external documentation.

showLines(This, LineStart, LineEnd) -> ok

  • This = wxStyledTextCtrl()
  • LineStart = integer()
  • LineEnd = integer()

See external documentation.

hideLines(This, LineStart, LineEnd) -> ok

  • This = wxStyledTextCtrl()
  • LineStart = integer()
  • LineEnd = integer()

See external documentation.

getLineVisible(This, Line) -> boolean()

  • This = wxStyledTextCtrl()
  • Line = integer()

See external documentation.

setFoldExpanded(This, Line, Expanded) -> ok

  • This = wxStyledTextCtrl()
  • Line = integer()
  • Expanded = boolean()

See external documentation.

getFoldExpanded(This, Line) -> boolean()

  • This = wxStyledTextCtrl()
  • Line = integer()

See external documentation.

toggleFold(This, Line) -> ok

  • This = wxStyledTextCtrl()
  • Line = integer()

See external documentation.

ensureVisible(This, Line) -> ok

  • This = wxStyledTextCtrl()
  • Line = integer()

See external documentation.

setFoldFlags(This, Flags) -> ok

  • This = wxStyledTextCtrl()
  • Flags = integer()

See external documentation.

ensureVisibleEnforcePolicy(This, Line) -> ok

  • This = wxStyledTextCtrl()
  • Line = integer()

See external documentation.

setTabIndents(This, TabIndents) -> ok

  • This = wxStyledTextCtrl()
  • TabIndents = boolean()

See external documentation.

getTabIndents(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

setBackSpaceUnIndents(This, BsUnIndents) -> ok

  • This = wxStyledTextCtrl()
  • BsUnIndents = boolean()

See external documentation.

getBackSpaceUnIndents(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

setMouseDwellTime(This, PeriodMilliseconds) -> ok

  • This = wxStyledTextCtrl()
  • PeriodMilliseconds = integer()

See external documentation.

getMouseDwellTime(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

wordStartPosition(This, Pos, OnlyWordCharacters) -> integer()

  • This = wxStyledTextCtrl()
  • Pos = integer()
  • OnlyWordCharacters = boolean()

See external documentation.

wordEndPosition(This, Pos, OnlyWordCharacters) -> integer()

  • This = wxStyledTextCtrl()
  • Pos = integer()
  • OnlyWordCharacters = boolean()

See external documentation.

setWrapMode(This, Mode) -> ok

  • This = wxStyledTextCtrl()
  • Mode = integer()

See external documentation.

getWrapMode(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

setWrapVisualFlags(This, WrapVisualFlags) -> ok

  • This = wxStyledTextCtrl()
  • WrapVisualFlags = integer()

See external documentation.

getWrapVisualFlags(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

setWrapVisualFlagsLocation(This, WrapVisualFlagsLocation) -> ok

  • This = wxStyledTextCtrl()
  • WrapVisualFlagsLocation = integer()

See external documentation.

getWrapVisualFlagsLocation(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

setWrapStartIndent(This, Indent) -> ok

  • This = wxStyledTextCtrl()
  • Indent = integer()

See external documentation.

getWrapStartIndent(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

setLayoutCache(This, Mode) -> ok

  • This = wxStyledTextCtrl()
  • Mode = integer()

See external documentation.

getLayoutCache(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

setScrollWidth(This, PixelWidth) -> ok

  • This = wxStyledTextCtrl()
  • PixelWidth = integer()

See external documentation.

getScrollWidth(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

textWidth(This, Style, Text) -> integer()

  • This = wxStyledTextCtrl()
  • Style = integer()
  • Text = chardata() (see module unicode)

See external documentation.

getEndAtLastLine(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

textHeight(This, Line) -> integer()

  • This = wxStyledTextCtrl()
  • Line = integer()

See external documentation.

setUseVerticalScrollBar(This, Show) -> ok

  • This = wxStyledTextCtrl()
  • Show = boolean()

See external documentation.

getUseVerticalScrollBar(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

appendText(This, Text) -> ok

  • This = wxStyledTextCtrl()
  • Text = chardata() (see module unicode)

See external documentation.

getTwoPhaseDraw(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

setTwoPhaseDraw(This, TwoPhase) -> ok

  • This = wxStyledTextCtrl()
  • TwoPhase = boolean()

See external documentation.

targetFromSelection(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

linesJoin(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

linesSplit(This, PixelWidth) -> ok

  • This = wxStyledTextCtrl()
  • PixelWidth = integer()

See external documentation.

setFoldMarginColour(This, UseSetting, Back) -> ok

  • This = wxStyledTextCtrl()
  • UseSetting = boolean()
  • Back = wx_colour() (see module wx)

See external documentation.

setFoldMarginHiColour(This, UseSetting, Fore) -> ok

  • This = wxStyledTextCtrl()
  • UseSetting = boolean()
  • Fore = wx_colour() (see module wx)

See external documentation.

lineDown(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

lineDownExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

lineUp(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

lineUpExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

charLeft(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

charLeftExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

charRight(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

charRightExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

wordLeft(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

wordLeftExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

wordRight(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

wordRightExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

home(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

homeExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

lineEnd(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

lineEndExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

documentStart(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

documentStartExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

documentEnd(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

documentEndExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

pageUp(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

pageUpExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

pageDown(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

pageDownExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

editToggleOvertype(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

cancel(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

deleteBack(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

tab(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

backTab(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

newLine(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

formFeed(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

vCHome(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

vCHomeExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

zoomIn(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

zoomOut(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

delWordLeft(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

delWordRight(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

lineCut(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

lineDelete(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

lineTranspose(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

lineDuplicate(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

lowerCase(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

upperCase(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

lineScrollDown(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

lineScrollUp(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

deleteBackNotLine(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

homeDisplay(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

homeDisplayExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

lineEndDisplay(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

lineEndDisplayExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

homeWrapExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

lineEndWrap(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

lineEndWrapExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

vCHomeWrap(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

vCHomeWrapExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

lineCopy(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

moveCaretInsideView(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

lineLength(This, Line) -> integer()

  • This = wxStyledTextCtrl()
  • Line = integer()

See external documentation.

braceHighlight(This, Pos1, Pos2) -> ok

  • This = wxStyledTextCtrl()
  • Pos1 = integer()
  • Pos2 = integer()

See external documentation.

braceBadLight(This, Pos) -> ok

  • This = wxStyledTextCtrl()
  • Pos = integer()

See external documentation.

braceMatch(This, Pos) -> integer()

  • This = wxStyledTextCtrl()
  • Pos = integer()

See external documentation.

getViewEOL(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

setViewEOL(This, Visible) -> ok

  • This = wxStyledTextCtrl()
  • Visible = boolean()

See external documentation.

setModEventMask(This, Mask) -> ok

  • This = wxStyledTextCtrl()
  • Mask = integer()

See external documentation.

getEdgeColumn(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

setEdgeColumn(This, Column) -> ok

  • This = wxStyledTextCtrl()
  • Column = integer()

See external documentation.

setEdgeMode(This, Mode) -> ok

  • This = wxStyledTextCtrl()
  • Mode = integer()

See external documentation.

getEdgeMode(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

getEdgeColour(This) -> wx_colour4() (see module wx)

  • This = wxStyledTextCtrl()

See external documentation.

setEdgeColour(This, EdgeColour) -> ok

  • This = wxStyledTextCtrl()
  • EdgeColour = wx_colour() (see module wx)

See external documentation.

searchAnchor(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

searchNext(This, Flags, Text) -> integer()

  • This = wxStyledTextCtrl()
  • Flags = integer()
  • Text = chardata() (see module unicode)

See external documentation.

searchPrev(This, Flags, Text) -> integer()

  • This = wxStyledTextCtrl()
  • Flags = integer()
  • Text = chardata() (see module unicode)

See external documentation.

linesOnScreen(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

usePopUp(This, AllowPopUp) -> ok

  • This = wxStyledTextCtrl()
  • AllowPopUp = boolean()

See external documentation.

selectionIsRectangle(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

setZoom(This, Zoom) -> ok

  • This = wxStyledTextCtrl()
  • Zoom = integer()

See external documentation.

getZoom(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

getModEventMask(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

setSTCFocus(This, Focus) -> ok

  • This = wxStyledTextCtrl()
  • Focus = boolean()

See external documentation.

getSTCFocus(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

setStatus(This, StatusCode) -> ok

  • This = wxStyledTextCtrl()
  • StatusCode = integer()

See external documentation.

getStatus(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

setMouseDownCaptures(This, Captures) -> ok

  • This = wxStyledTextCtrl()
  • Captures = boolean()

See external documentation.

getMouseDownCaptures(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

setSTCCursor(This, CursorType) -> ok

  • This = wxStyledTextCtrl()
  • CursorType = integer()

See external documentation.

getSTCCursor(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

setControlCharSymbol(This, Symbol) -> ok

  • This = wxStyledTextCtrl()
  • Symbol = integer()

See external documentation.

getControlCharSymbol(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

wordPartLeft(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

wordPartLeftExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

wordPartRight(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

wordPartRightExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

setVisiblePolicy(This, VisiblePolicy, VisibleSlop) -> ok

  • This = wxStyledTextCtrl()
  • VisiblePolicy = integer()
  • VisibleSlop = integer()

See external documentation.

delLineLeft(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

delLineRight(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

getXOffset(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

chooseCaretX(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

setXCaretPolicy(This, CaretPolicy, CaretSlop) -> ok

  • This = wxStyledTextCtrl()
  • CaretPolicy = integer()
  • CaretSlop = integer()

See external documentation.

setYCaretPolicy(This, CaretPolicy, CaretSlop) -> ok

  • This = wxStyledTextCtrl()
  • CaretPolicy = integer()
  • CaretSlop = integer()

See external documentation.

getPrintWrapMode(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

setHotspotActiveForeground(This, UseSetting, Fore) -> ok

  • This = wxStyledTextCtrl()
  • UseSetting = boolean()
  • Fore = wx_colour() (see module wx)

See external documentation.

setHotspotActiveBackground(This, UseSetting, Back) -> ok

  • This = wxStyledTextCtrl()
  • UseSetting = boolean()
  • Back = wx_colour() (see module wx)

See external documentation.

setHotspotActiveUnderline(This, Underline) -> ok

  • This = wxStyledTextCtrl()
  • Underline = boolean()

See external documentation.

setHotspotSingleLine(This, SingleLine) -> ok

  • This = wxStyledTextCtrl()
  • SingleLine = boolean()

See external documentation.

paraDownExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

paraUp(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

paraUpExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

positionBefore(This, Pos) -> integer()

  • This = wxStyledTextCtrl()
  • Pos = integer()

See external documentation.

positionAfter(This, Pos) -> integer()

  • This = wxStyledTextCtrl()
  • Pos = integer()

See external documentation.

copyRange(This, Start, End) -> ok

  • This = wxStyledTextCtrl()
  • Start = integer()
  • End = integer()

See external documentation.

copyText(This, Length, Text) -> ok

  • This = wxStyledTextCtrl()
  • Length = integer()
  • Text = chardata() (see module unicode)

See external documentation.

setSelectionMode(This, Mode) -> ok

  • This = wxStyledTextCtrl()
  • Mode = integer()

See external documentation.

getSelectionMode(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

lineDownRectExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

lineUpRectExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

charLeftRectExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

charRightRectExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

homeRectExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

vCHomeRectExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

lineEndRectExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

pageUpRectExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

pageDownRectExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

stutteredPageUp(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

stutteredPageUpExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

stutteredPageDown(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

stutteredPageDownExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

wordLeftEnd(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

wordLeftEndExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

wordRightEnd(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

wordRightEndExtend(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

setWhitespaceChars(This, Characters) -> ok

  • This = wxStyledTextCtrl()
  • Characters = chardata() (see module unicode)

See external documentation.

setCharsDefault(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

autoCompGetCurrent(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

allocate(This, Bytes) -> ok

  • This = wxStyledTextCtrl()
  • Bytes = integer()

See external documentation.

findColumn(This, Line, Column) -> integer()

  • This = wxStyledTextCtrl()
  • Line = integer()
  • Column = integer()

See external documentation.

getCaretSticky(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

setCaretSticky(This, UseCaretStickyBehaviour) -> ok

  • This = wxStyledTextCtrl()
  • UseCaretStickyBehaviour = boolean()

See external documentation.

toggleCaretSticky(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

setPasteConvertEndings(This, Convert) -> ok

  • This = wxStyledTextCtrl()
  • Convert = boolean()

See external documentation.

getPasteConvertEndings(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

selectionDuplicate(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

setCaretLineBackAlpha(This, Alpha) -> ok

  • This = wxStyledTextCtrl()
  • Alpha = integer()

See external documentation.

getCaretLineBackAlpha(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

startRecord(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

stopRecord(This) -> ok

  • This = wxStyledTextCtrl()

See external documentation.

setLexer(This, Lexer) -> ok

  • This = wxStyledTextCtrl()
  • Lexer = integer()

See external documentation.

getLexer(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

colourise(This, Start, End) -> ok

  • This = wxStyledTextCtrl()
  • Start = integer()
  • End = integer()

See external documentation.

setProperty(This, Key, Value) -> ok

  • This = wxStyledTextCtrl()
  • Key = chardata() (see module unicode)
  • Value = chardata() (see module unicode)

See external documentation.

setKeyWords(This, KeywordSet, KeyWords) -> ok

  • This = wxStyledTextCtrl()
  • KeywordSet = integer()
  • KeyWords = chardata() (see module unicode)

See external documentation.

setLexerLanguage(This, Language) -> ok

  • This = wxStyledTextCtrl()
  • Language = chardata() (see module unicode)

See external documentation.

getProperty(This, Key) -> charlist() (see module unicode)

  • This = wxStyledTextCtrl()
  • Key = chardata() (see module unicode)

See external documentation.

getStyleBitsNeeded(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

getCurrentLine(This) -> integer()

  • This = wxStyledTextCtrl()

See external documentation.

styleSetSpec(This, StyleNum, Spec) -> ok

  • This = wxStyledTextCtrl()
  • StyleNum = integer()
  • Spec = chardata() (see module unicode)

See external documentation.

styleSetFont(This, StyleNum, Font) -> ok

  • This = wxStyledTextCtrl()
  • StyleNum = integer()
  • Font = wxFont() (see module wxFont)

See external documentation.

styleSetFontAttr(This, StyleNum, Size, FaceName, Bold, Italic, Underline) -> ok

  • This = wxStyledTextCtrl()
  • StyleNum = integer()
  • Size = integer()
  • FaceName = chardata() (see module unicode)
  • Bold = boolean()
  • Italic = boolean()
  • Underline = boolean()

styleSetFontAttr(This, StyleNum, Size, FaceName, Bold, Italic, Underline, Option::[Option]) -> ok

  • This = wxStyledTextCtrl()
  • StyleNum = integer()
  • Size = integer()
  • FaceName = chardata() (see module unicode)
  • Bold = boolean()
  • Italic = boolean()
  • Underline = boolean()
  • Option = {encoding, wx_enum() (see module wx)}

See external documentation.
Encoding = ?wxFONTENCODING_SYSTEM | ?wxFONTENCODING_DEFAULT | ?wxFONTENCODING_ISO8859_1 | ?wxFONTENCODING_ISO8859_2 | ?wxFONTENCODING_ISO8859_3 | ?wxFONTENCODING_ISO8859_4 | ?wxFONTENCODING_ISO8859_5 | ?wxFONTENCODING_ISO8859_6 | ?wxFONTENCODING_ISO8859_7 | ?wxFONTENCODING_ISO8859_8 | ?wxFONTENCODING_ISO8859_9 | ?wxFONTENCODING_ISO8859_10 | ?wxFONTENCODING_ISO8859_11 | ?wxFONTENCODING_ISO8859_12 | ?wxFONTENCODING_ISO8859_13 | ?wxFONTENCODING_ISO8859_14 | ?wxFONTENCODING_ISO8859_15 | ?wxFONTENCODING_ISO8859_MAX | ?wxFONTENCODING_KOI8 | ?wxFONTENCODING_KOI8_U | ?wxFONTENCODING_ALTERNATIVE | ?wxFONTENCODING_BULGARIAN | ?wxFONTENCODING_CP437 | ?wxFONTENCODING_CP850 | ?wxFONTENCODING_CP852 | ?wxFONTENCODING_CP855 | ?wxFONTENCODING_CP866 | ?wxFONTENCODING_CP874 | ?wxFONTENCODING_CP932 | ?wxFONTENCODING_CP936 | ?wxFONTENCODING_CP949 | ?wxFONTENCODING_CP950 | ?wxFONTENCODING_CP1250 | ?wxFONTENCODING_CP1251 | ?wxFONTENCODING_CP1252 | ?wxFONTENCODING_CP1253 | ?wxFONTENCODING_CP1254 | ?wxFONTENCODING_CP1255 | ?wxFONTENCODING_CP1256 | ?wxFONTENCODING_CP1257 | ?wxFONTENCODING_CP12_MAX | ?wxFONTENCODING_UTF7 | ?wxFONTENCODING_UTF8 | ?wxFONTENCODING_EUC_JP | ?wxFONTENCODING_UTF16BE | ?wxFONTENCODING_UTF16LE | ?wxFONTENCODING_UTF32BE | ?wxFONTENCODING_UTF32LE | ?wxFONTENCODING_MACROMAN | ?wxFONTENCODING_MACJAPANESE | ?wxFONTENCODING_MACCHINESETRAD | ?wxFONTENCODING_MACKOREAN | ?wxFONTENCODING_MACARABIC | ?wxFONTENCODING_MACHEBREW | ?wxFONTENCODING_MACGREEK | ?wxFONTENCODING_MACCYRILLIC | ?wxFONTENCODING_MACDEVANAGARI | ?wxFONTENCODING_MACGURMUKHI | ?wxFONTENCODING_MACGUJARATI | ?wxFONTENCODING_MACORIYA | ?wxFONTENCODING_MACBENGALI | ?wxFONTENCODING_MACTAMIL | ?wxFONTENCODING_MACTELUGU | ?wxFONTENCODING_MACKANNADA | ?wxFONTENCODING_MACMALAJALAM | ?wxFONTENCODING_MACSINHALESE | ?wxFONTENCODING_MACBURMESE | ?wxFONTENCODING_MACKHMER | ?wxFONTENCODING_MACTHAI | ?wxFONTENCODING_MACLAOTIAN | ?wxFONTENCODING_MACGEORGIAN | ?wxFONTENCODING_MACARMENIAN | ?wxFONTENCODING_MACCHINESESIMP | ?wxFONTENCODING_MACTIBETAN | ?wxFONTENCODING_MACMONGOLIAN | ?wxFONTENCODING_MACETHIOPIC | ?wxFONTENCODING_MACCENTRALEUR | ?wxFONTENCODING_MACVIATNAMESE | ?wxFONTENCODING_MACARABICEXT | ?wxFONTENCODING_MACSYMBOL | ?wxFONTENCODING_MACDINGBATS | ?wxFONTENCODING_MACTURKISH | ?wxFONTENCODING_MACCROATIAN | ?wxFONTENCODING_MACICELANDIC | ?wxFONTENCODING_MACROMANIAN | ?wxFONTENCODING_MACCELTIC | ?wxFONTENCODING_MACGAELIC | ?wxFONTENCODING_MACKEYBOARD | ?wxFONTENCODING_MAX | ?wxFONTENCODING_MACMIN | ?wxFONTENCODING_MACMAX | ?wxFONTENCODING_UTF16 | ?wxFONTENCODING_UTF32 | ?wxFONTENCODING_UNICODE | ?wxFONTENCODING_GB2312 | ?wxFONTENCODING_BIG5 | ?wxFONTENCODING_SHIFT_JIS

styleSetCharacterSet(This, Style, CharacterSet) -> ok

  • This = wxStyledTextCtrl()
  • Style = integer()
  • CharacterSet = integer()

See external documentation.

styleSetFontEncoding(This, Style, Encoding) -> ok

  • This = wxStyledTextCtrl()
  • Style = integer()
  • Encoding = wx_enum() (see module wx)

See external documentation.
Encoding = ?wxFONTENCODING_SYSTEM | ?wxFONTENCODING_DEFAULT | ?wxFONTENCODING_ISO8859_1 | ?wxFONTENCODING_ISO8859_2 | ?wxFONTENCODING_ISO8859_3 | ?wxFONTENCODING_ISO8859_4 | ?wxFONTENCODING_ISO8859_5 | ?wxFONTENCODING_ISO8859_6 | ?wxFONTENCODING_ISO8859_7 | ?wxFONTENCODING_ISO8859_8 | ?wxFONTENCODING_ISO8859_9 | ?wxFONTENCODING_ISO8859_10 | ?wxFONTENCODING_ISO8859_11 | ?wxFONTENCODING_ISO8859_12 | ?wxFONTENCODING_ISO8859_13 | ?wxFONTENCODING_ISO8859_14 | ?wxFONTENCODING_ISO8859_15 | ?wxFONTENCODING_ISO8859_MAX | ?wxFONTENCODING_KOI8 | ?wxFONTENCODING_KOI8_U | ?wxFONTENCODING_ALTERNATIVE | ?wxFONTENCODING_BULGARIAN | ?wxFONTENCODING_CP437 | ?wxFONTENCODING_CP850 | ?wxFONTENCODING_CP852 | ?wxFONTENCODING_CP855 | ?wxFONTENCODING_CP866 | ?wxFONTENCODING_CP874 | ?wxFONTENCODING_CP932 | ?wxFONTENCODING_CP936 | ?wxFONTENCODING_CP949 | ?wxFONTENCODING_CP950 | ?wxFONTENCODING_CP1250 | ?wxFONTENCODING_CP1251 | ?wxFONTENCODING_CP1252 | ?wxFONTENCODING_CP1253 | ?wxFONTENCODING_CP1254 | ?wxFONTENCODING_CP1255 | ?wxFONTENCODING_CP1256 | ?wxFONTENCODING_CP1257 | ?wxFONTENCODING_CP12_MAX | ?wxFONTENCODING_UTF7 | ?wxFONTENCODING_UTF8 | ?wxFONTENCODING_EUC_JP | ?wxFONTENCODING_UTF16BE | ?wxFONTENCODING_UTF16LE | ?wxFONTENCODING_UTF32BE | ?wxFONTENCODING_UTF32LE | ?wxFONTENCODING_MACROMAN | ?wxFONTENCODING_MACJAPANESE | ?wxFONTENCODING_MACCHINESETRAD | ?wxFONTENCODING_MACKOREAN | ?wxFONTENCODING_MACARABIC | ?wxFONTENCODING_MACHEBREW | ?wxFONTENCODING_MACGREEK | ?wxFONTENCODING_MACCYRILLIC | ?wxFONTENCODING_MACDEVANAGARI | ?wxFONTENCODING_MACGURMUKHI | ?wxFONTENCODING_MACGUJARATI | ?wxFONTENCODING_MACORIYA | ?wxFONTENCODING_MACBENGALI | ?wxFONTENCODING_MACTAMIL | ?wxFONTENCODING_MACTELUGU | ?wxFONTENCODING_MACKANNADA | ?wxFONTENCODING_MACMALAJALAM | ?wxFONTENCODING_MACSINHALESE | ?wxFONTENCODING_MACBURMESE | ?wxFONTENCODING_MACKHMER | ?wxFONTENCODING_MACTHAI | ?wxFONTENCODING_MACLAOTIAN | ?wxFONTENCODING_MACGEORGIAN | ?wxFONTENCODING_MACARMENIAN | ?wxFONTENCODING_MACCHINESESIMP | ?wxFONTENCODING_MACTIBETAN | ?wxFONTENCODING_MACMONGOLIAN | ?wxFONTENCODING_MACETHIOPIC | ?wxFONTENCODING_MACCENTRALEUR | ?wxFONTENCODING_MACVIATNAMESE | ?wxFONTENCODING_MACARABICEXT | ?wxFONTENCODING_MACSYMBOL | ?wxFONTENCODING_MACDINGBATS | ?wxFONTENCODING_MACTURKISH | ?wxFONTENCODING_MACCROATIAN | ?wxFONTENCODING_MACICELANDIC | ?wxFONTENCODING_MACROMANIAN | ?wxFONTENCODING_MACCELTIC | ?wxFONTENCODING_MACGAELIC | ?wxFONTENCODING_MACKEYBOARD | ?wxFONTENCODING_MAX | ?wxFONTENCODING_MACMIN | ?wxFONTENCODING_MACMAX | ?wxFONTENCODING_UTF16 | ?wxFONTENCODING_UTF32 | ?wxFONTENCODING_UNICODE | ?wxFONTENCODING_GB2312 | ?wxFONTENCODING_BIG5 | ?wxFONTENCODING_SHIFT_JIS

cmdKeyExecute(This, Cmd) -> ok

  • This = wxStyledTextCtrl()
  • Cmd = integer()

See external documentation.

setMargins(This, Left, Right) -> ok

  • This = wxStyledTextCtrl()
  • Left = integer()
  • Right = integer()

See external documentation.

getSelection(This) -> {StartPos::integer(), EndPos::integer()}

  • This = wxStyledTextCtrl()

See external documentation.

pointFromPosition(This, Pos) -> {X::integer(), Y::integer()}

  • This = wxStyledTextCtrl()
  • Pos = integer()

See external documentation.

scrollToLine(This, Line) -> ok

  • This = wxStyledTextCtrl()
  • Line = integer()

See external documentation.

scrollToColumn(This, Column) -> ok

  • This = wxStyledTextCtrl()
  • Column = integer()

See external documentation.

sendMsg(This, Msg) -> integer()

  • This = wxStyledTextCtrl()
  • Msg = integer()

Equivalent to sendMsg(This, Msg, []).

sendMsg(This, Msg, Option::[Option]) -> integer()

  • This = wxStyledTextCtrl()
  • Msg = integer()
  • Option = {wp, integer()} | {lp, integer()}

See external documentation.

setVScrollBar(This, Bar) -> ok

  • This = wxStyledTextCtrl()
  • Bar = wxScrollBar() (see module wxScrollBar)

See external documentation.

setHScrollBar(This, Bar) -> ok

  • This = wxStyledTextCtrl()
  • Bar = wxScrollBar() (see module wxScrollBar)

See external documentation.

getLastKeydownProcessed(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

setLastKeydownProcessed(This, Val) -> ok

  • This = wxStyledTextCtrl()
  • Val = boolean()

See external documentation.

saveFile(This, Filename) -> boolean()

  • This = wxStyledTextCtrl()
  • Filename = chardata() (see module unicode)

See external documentation.

loadFile(This, Filename) -> boolean()

  • This = wxStyledTextCtrl()
  • Filename = chardata() (see module unicode)

See external documentation.

doDragOver(This, X, Y, Def) -> wx_enum() (see module wx)

  • This = wxStyledTextCtrl()
  • X = integer()
  • Y = integer()
  • Def = wx_enum() (see module wx)

See external documentation.
Def = ?wxDragError | ?wxDragNone | ?wxDragCopy | ?wxDragMove | ?wxDragLink | ?wxDragCancel
Res = ?wxDragError | ?wxDragNone | ?wxDragCopy | ?wxDragMove | ?wxDragLink | ?wxDragCancel

doDropText(This, X, Y, Data) -> boolean()

  • This = wxStyledTextCtrl()
  • X = integer()
  • Y = integer()
  • Data = chardata() (see module unicode)

See external documentation.

getUseAntiAliasing(This) -> boolean()

  • This = wxStyledTextCtrl()

See external documentation.

addTextRaw(This, Text) -> ok

  • This = wxStyledTextCtrl()
  • Text = binary()

See external documentation.

insertTextRaw(This, Pos, Text) -> ok

  • This = wxStyledTextCtrl()
  • Pos = integer()
  • Text = binary()

See external documentation.

getCurLineRaw(This) -> Result

  • Result = {Res::binary(), LinePos::integer()}
  • This = wxStyledTextCtrl()

See external documentation.

getLineRaw(This, Line) -> binary()

  • This = wxStyledTextCtrl()
  • Line = integer()

See external documentation.

getSelectedTextRaw(This) -> binary()

  • This = wxStyledTextCtrl()

See external documentation.

getTextRangeRaw(This, StartPos, EndPos) -> binary()

  • This = wxStyledTextCtrl()
  • StartPos = integer()
  • EndPos = integer()

See external documentation.

setTextRaw(This, Text) -> ok

  • This = wxStyledTextCtrl()
  • Text = binary()

See external documentation.

getTextRaw(This) -> binary()

  • This = wxStyledTextCtrl()

See external documentation.

appendTextRaw(This, Text) -> ok

  • This = wxStyledTextCtrl()
  • Text = binary()

See external documentation.

destroy(This::wxStyledTextCtrl()) -> ok

Destroys this object, do not use object again