Enum Command
Actions which can be performed by the application or bound to keys in a View control.
public enum Command
Fields
Accept = 35Accepts the current state (e.g. selection, button press etc).
BackTab = 74Tabs back to the previous item.
BottomEnd = 31Moves to the bottom/end.
BottomEndExtend = 32Extends the selection to the bottom/end.
Cancel = 41Cancels an action or any temporary states on the control e.g. expanding a combo list.
Collapse = 39Collapses a list or item (with subitems).
CollapseAll = 40Recursively collapses a list items of their children (if any).
Copy = 61Copies the current selection.
Cut = 62Cuts the current selection.
CutToEndLine = 18Cuts to the clipboard the characters from the current position to the end of the line.
CutToStartLine = 19Cuts to the clipboard the characters from the current position to the start of the line.
DeleteAll = 46Deletes all objects.
DeleteCharLeft = 44Deletes the character on the left.
DeleteCharRight = 43Deletes the character on the right.
DisableOverwrite = 24Disables overwrite mode (EnableOverwrite)
EnableOverwrite = 23Enables overwrite mode such that newly typed text overwrites the text that is already there (typically associated with the Insert key).
EndOfLine = 49Moves the cursor to the end of line.
EndOfLineExtend = 50Extends the selection to the end of line.
EndOfPage = 52Moves the cursor to the bottom of page.
Expand = 37Expands a list or item (with subitems).
ExpandAll = 38Recursively Expands all child items and their child items (if any).
KillWordBackwards = 21Deletes the characters backwards.
KillWordForwards = 20Deletes the characters forwards.
Left = 8Moves the selection left one by the minimum increment supported by the View e.g. single character, cell, item etc.
LeftExtend = 10Extends the selection left one by the minimum increment supported by the view e.g. single character, cell, item etc.
LeftHome = 55Moves to the left begin.
LeftHomeExtend = 56Extends the selection to the left begin.
LineDown = 0Moves down one item (cell, line, etc...).
LineDownExtend = 1Extends the selection down one (cell, line, etc...).
LineDownToLastBranch = 2Moves down to the last child node of the branch that holds the current selection.
LineUp = 4Moves up one (cell, line, etc...).
LineUpExtend = 5Extends the selection up one item (cell, line, etc...).
LineUpToFirstBranch = 6Moves up to the first child node of the branch that holds the current selection.
NewLine = 72Inserts a new item.
NextView = 66Moves focus to the next view.
NextViewOrTop = 68Moves focus to the next view or toplevel (case of MDI).
OpenSelectedItem = 33Open the selected item.
PageDown = 25Move one page down.
PageDownExtend = 26Move one page page extending the selection to cover revealed objects/characters.
PageLeft = 53Moves to the left page.
PageRight = 54Moves to the right page.
PageUp = 27Move one page up.
PageUpExtend = 28Move one page up extending the selection to cover revealed objects/characters.
Paste = 63Pastes the current selection.
PreviousView = 67Moves focuss to the previous view.
PreviousViewOrTop = 69Moves focus to the next previous or toplevel (case of MDI).
QuitToplevel = 64Quit a Toplevel.
Redo = 60Redo changes.
Refresh = 70Refresh.
Right = 11Moves the selection right one by the minimum increment supported by the view e.g. single character, cell, item etc.
RightEnd = 57Moves to the right end.
RightEndExtend = 58Extends the selection to the right end.
RightExtend = 13Extends the selection right one by the minimum increment supported by the view e.g. single character, cell, item etc.
ScrollDown = 3Scrolls down one (cell, line, etc...) (without changing the selection).
ScrollLeft = 9Scrolls one item (cell, character, etc...) to the left
ScrollRight = 12Scrolls one item (cell, character, etc...) to the right.
ScrollUp = 7Scrolls up one item (cell, line, etc...) (without changing the selection).
SelectAll = 45Selects all objects.
StartOfLine = 47Moves the cursor to the start of line.
StartOfLineExtend = 48Extends the selection to the start of line.
StartOfPage = 51Moves the cursor to the top of page.
Suspend = 65Suspend a application (used on Linux).
Tab = 73Tabs to the next item.
ToggleChecked = 34Toggle the checked state.
ToggleExpandCollapse = 36Toggles the Expanded or collapsed state of a a list or item (with subitems).
ToggleExtend = 71Toggles the selection.
ToggleOverwrite = 22Toggles overwrite mode such that newly typed text overwrites the text that is already there (typically associated with the Insert key).
TopHome = 29Moves to the top/home.
TopHomeExtend = 30Extends the selection to the top/home.
Undo = 59Undo changes.
UnixEmulation = 42Unix emulation.
WordLeft = 14Moves the caret to the start of the previous word.
WordLeftExtend = 15Extends the selection to the start of the previous word.
WordRight = 16Moves the caret to the start of the next word.
WordRightExtend = 17Extends the selection to the start of the next word.