Skip to main content
A newer version of this page is available. .

ASPxClientRichEdit.CustomCommandExecuted Event

Occurs after a custom command has been executed on the client side.

Declaration

CustomCommandExecuted: ASPxClientEvent<ASPxClientRichEditCustomCommandExecutedEventHandler>

Event Data

The CustomCommandExecuted event's data class is ASPxClientRichEditCustomCommandExecutedEventArgs. The following properties provide information specific to this event:

Property Description
commandName Gets the name of the processed command.
parameter Gets an optional parameter that complements the processed command.

Remarks

Handle the CustomCommandExecuted event to perform specific client actions in response to a command initiated by a click on a custom command (such as a ribbon item or context menu item) within the RIchEdt.

Note

The RichEdit’s default ribbon items are implemented by classes (RibbonItemBase decendants) whose names start with the ‘RER’ prefix. Ribbon items realized by other classes are considered to be custom within the RichEdit.

See Also