Version

SyntaxEditorCommandType Enumeration

An enumeration of available commands for the XamSyntaxEditor object.
Syntax
'Declaration
 
Public Enum SyntaxEditorCommandType 
   Inherits System.Enum
public enum SyntaxEditorCommandType : System.Enum 
Members
MemberDescription
AllowEditAreaHorizontalSplitsDisplay a mini-splitter that allows the editing area to be split horizontally, creating two EditorDocumentViews in the editing area of the control separated by a horizontal splitter.
AllowEditAreaVerticalAndHorizontalSplitsDisplay a mini-splitter that allows the editing area to be split vertically and horizontally, creating two EditorDocumentViews in the editing area of the control separated by either a horizontal or verticalsplitter.
AllowEditAreaVerticalSplitsDisplay a mini-splitter that allows the editing area to be split vertically, creating two EditorDocumentViews in the editing area of the control separated by a vertical splitter.
ConvertToLowercaseConverts the currently selected text to lowercase.
ConvertToUppercaseConverts the currently selected text to uppercase.
CopyCopies the currently selected text to the clipboard.
CutCuts the currently selected text to the clipboard.
DecreaseIndentDecreases the indent level of the line(s) containing the current selection or Caret position so that the line begins at the nearest tabstop position preceding the current line start position.
DeleteCurrentCharacterDeletes the character at the Caret location. If there is an active selection, the selected text is deleted.
DeletePreviousCharacterDeletes the character preceeding the Caret location. If there is an active selection, the selected text is deleted.
DeleteToBeginningOfCurrentWordDeletes all text from the Caret location to the beginning of the current word (if the Caret is in the middle of a word), or deletes the previous word if the Caret is at the beginning of a word. If there is an active selection, the selected text is deleted.
DeleteToEndOfCurrentWordDeletes all text from the Caret location to the end of the current word. If there is an active selection, the selected text is deleted.
DoNotAllowEditAreaSplittingDo not display a mini-splitter that allows the editing area to be split into multiple views - a single EditorDocumentView always occupies the entire editing area of the control.
IncreaseIndentIncreases the indent level of the line(s) containing the current selection or Caret position so that the line begins at the nearest tabstop position following the current line start position.
MoveDownMoves the Caret down one line.
MovePageDownMoves the Caret down one page.
MovePageUpMoves the Caret up one page.
MoveToBottomOfPageMoves the Caret to the last line on the current page.
MoveToEndOfDocumentMoves the Caret to the end of the Infragistics.Documents.TextDocument.
MoveToEndOfLineMoves the Caret to the end of the line containing the Caret.
MoveToFirstNonWhitespaceOnLineMoves the Caret to the first non-whitespace character on the line containing the Caret.
MoveToNextCharacterMoves the Caret to the next character position.
MoveToNextWordMoves the Caret to the next word.
MoveToPreviousCharacterMoves the Caret to the previous character position.
MoveToPreviousWordMoves the Caret to the previous word.
MoveToStartOfDocumentMoves the Caret to the start of the Infragistics.Documents.TextDocument.
MoveToStartOfLineMoves the Caret to the start of the line containing the Caret.
MoveToTopOfPageMoves the Caret to the first line on the current page.
MoveUpMoves the Caret up one line.
PastePastes the current clipboard text at the current insertion point.
RedoRedo the last undone edit activity.
RemoveSplitFromEditAreaRemove the split from the editing area - a single EditorDocumentView will occupy the entire editing area of the control.
SelectDownMoves the Caret down one line, selecting all text in between the start and end position.
SelectNextCharacterMoves the selection end point one character position to the right.
SelectNextWordMoves the selection end point one word to the right.
SelectPageDownExtends the selection down one page.
SelectPageUpExtends the selection up one page.
SelectPreviousCharacterMoves the selection end point one character position to the left.
SelectPreviousWordMoves the selection end point one word to the left.
SelectToBottomOfPageExtends the selection to the bottom of the current page.
SelectToEndOfDocumentExtends the current selection to the end of the Infragistics.Documents.TextDocument.
SelectToEndOfLineExtends the current selection to the end of the line containing the Caret.
SelectToFirstNonWhitespaceOnLineExtends the current selection to the first non-whitespace character on the line containing the Caret.
SelectToStartOfDocumentExtends the current selection to the start of the document.
SelectToStartOfLineExtends the current selection to the start of the line containing the Caret.
SelectToTopOfPageExtends the selection to the top of the current page.
SelectUpMoves the Caret up one line, selecting all text in between the start and end position.
SplitEditAreaHorizontallySplit the editing area horizontally, creating two EditorDocumentViews in the editing area of the control separated by a horizontal splitter.
SplitEditAreaVerticallySplit the editing area vertically, creating two EditorDocumentViews in the editing area of the control separated by a vertical splitter.
ToggleCurrentLineHighlightVisibilityToggles the visibility of the current line highlight.
ToggleRulerMarginVisibilityToggles the visibility of the RulerMargin.
ToggleWhitespaceVisibilityToggles the visibility of the whitespace indicators.
UndoUndo the last edit activity.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also