New to Telerik UI for WinFormsStart a free 30-day trial

Class CommandExecutedEventArgs. Implements the EventArgs

Definition

Namespace:Telerik.WinForms.SyntaxEditor.Commands

Assembly:Telerik.WinControls.SyntaxEditor.dll

Syntax:

C#
public class CommandExecutedEventArgs : EventArgs

Inheritance: objectEventArgsCommandExecutedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the CommandExecutedEventArgs class.

C#
public CommandExecutedEventArgs(SyntaxEditorCommandBase command, object commandParameter)
Parameters:commandSyntaxEditorCommandBase

The command.

commandParameterobject

The command parameter.

Initializes a new instance of the CommandExecutedEventArgs class.

C#
public CommandExecutedEventArgs(SyntaxEditorCommandBase command)
Parameters:commandSyntaxEditorCommandBase

The command.

Properties

Gets the command.

C#
public SyntaxEditorCommandBase Command { get; }
Property Value:

The command.

Gets the command parameter.

C#
public object CommandParameter { get; }
Property Value:

The command parameter.