aspnetcore-js-devexpress-dot-richedit-8dee7655.md
Contains data for the CustomCommandExecuted event.
export class CustomCommandExecutedEventArgs extends EventArgs
The CustomCommandExecuted event occurs after a custom command has been executed on the client side. The event handler receives an argument of the CustomCommandExecutedEventArgs type. The argument’s properties provide information specific to this event.
EventArgs CustomCommandExecutedEventArgs
Gets the name of the processed command.
commandName: string
| Type | Description |
|---|---|
| string |
The processed command’s name.
|
The commandName property returns the value specified by an item’s CommandName property on the server side or by the id property on the client side.
Gets an optional parameter that complements the processed command.
parameter: any
| Type | Description |
|---|---|
| any |
A value that contains additional information about the processed command.
|