ASPxClientCommandConsts.SELECT_ALL Property
Identifies a command that selects all content inside the html editor.
Declaration
static SELECT_ALL: string
Property Value
Type | Description |
---|---|
string | Value: “selectall” |
Remarks
The SELECT_ALL property can be used in the following ways.
- In the ASPxClientHtmlEditor.CommandExecuted event — to determine the action performed by an end-user. If the ASPxClientHtmlEditorCommandEventArgs.commandName event parameter returns the SELECT_ALL property value, this means that an end-user either clicked the “Select All” command in the context menu or used the Ctrl+A keyboard shortcut.
- In the ASPxClientHtmlEditor.ExecuteCommand method — to execute the command manually.
Note
This command is available both in the Design View and HTML View.
See Also