Class CommandExecutingEventArgs.
Definition
Namespace:Telerik.WinForms.SyntaxEditor.Commands
Assembly:Telerik.WinControls.SyntaxEditor.dll
Syntax:
C#
public class CommandExecutingEventArgs : EventArgs
Inheritance: objectEventArgsCommandExecutingEventArgs
Inherited Members
Constructors
Initializes a new instance of the CommandExecutingEventArgs class.
C#
public CommandExecutingEventArgs(SyntaxEditorCommandBase command, object commandParameter)
The command.
commandParameterobjectThe command parameter.
Properties
Gets a value indicating whether this CommandExecutingEventArgs is canceled.
C#
public bool Canceled { get; }
true if canceled; otherwise, false.
Gets the command.
C#
public SyntaxEditorCommandBase Command { get; }
The command.
Gets the command parameter.
C#
public object CommandParameter { get; }
The command parameter.
Methods
Cancels this instance.
C#
public void Cancel()