Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

CustomCommandExecutedEventArgs Class

Contains data for the CustomCommandExecuted event.

#Declaration

TypeScript
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

TypeScript
commandName: string

#Property Value

Type Description
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

TypeScript
parameter: any

#Property Value

Type Description
any

A value that contains additional information about the processed command.