'Declaration
Public Event CommandExecuted As EventHandler(Of ExecuteCommandEventArgs)
'Usage
Dim instance As RibbonBar Dim handler As EventHandler(Of ExecuteCommandEventArgs) AddHandler instance.CommandExecuted, handler
public event EventHandler<ExecuteCommandEventArgs> CommandExecuted
Event Data
The event handler receives an argument of type ExecuteCommandEventArgs containing data related to this event. The following ExecuteCommandEventArgs properties provide information specific to this event.
Property | Description |
---|---|
CommandName | Gets the name of command. |
Handled | Gets or sets a boolean value indicating whether the command was executed. |
Parameter | Gets the value of command. |
See Also