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
Constructors
Initializes a new instance of the CommandExecutedEventArgs class.
C#
public CommandExecutedEventArgs(SyntaxEditorCommandBase command, object commandParameter)
The command.
commandParameterobjectThe command parameter.
Initializes a new instance of the CommandExecutedEventArgs class.
C#
public CommandExecutedEventArgs(SyntaxEditorCommandBase command)
The command.
Properties
Gets the command.
C#
public SyntaxEditorCommandBase Command { get; }
The command.
Gets the command parameter.
C#
public object CommandParameter { get; }
The command parameter.