Back to Devexpress

CustomCommandExecutedEventArgs Class

aspnetcore-js-devexpress-dot-richedit-8dee7655.md

latest1.4 KB
Original Source

CustomCommandExecutedEventArgs Class

Contains data for the CustomCommandExecuted event.

Declaration

ts
export class CustomCommandExecutedEventArgs extends EventArgs

Remarks

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.

Inheritance

EventArgs CustomCommandExecutedEventArgs

Properties

commandName Property

Gets the name of the processed command.

Declaration

ts
commandName: string

Property Value

TypeDescription
string

The processed command’s name.

|

Remarks

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.

parameter Property

Gets an optional parameter that complements the processed command.

Declaration

ts
parameter: any

Property Value

TypeDescription
any

A value that contains additional information about the processed command.

|