CommandKeys.Edit Class
Defines the keys for commands in the 'Edit' category.
public static class CommandKeys.Edit
- Inheritance:
- object object
Fields
Copy
The key for a command that performs a 'clipboard copy' operation.
public const string Copy = "Edit.Copy"
Cut
The key for a command that performs a 'clipboard cut' operation.
public const string Cut = "Edit.Cut"
Delete
The key for a command that performs a 'delete' operation.
public const string Delete = "Edit.Delete"
Find
The key for a command that performs a 'find' operation.
public const string Find = "Edit.Find"
Paste
The key for a command that performs a 'clipboard paste' operation.
public const string Paste = "Edit.Paste"
Redo
The key for a command that performs a 'redo' operation.
public const string Redo = "Edit.Redo"
SelectAll
The key for a command that performs a 'select all' operation.
public const string SelectAll = "Edit.SelectAll"
Undo
The key for a command that performs an 'undo' operation.
public const string Undo = "Edit.Undo"