Class CommandExecutingEventArgs
Class CommandExecutingEventArgs.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Controls.SyntaxEditor.Commands
Assembly: Telerik.Windows.Controls.SyntaxEditor.dll
Syntax
public class CommandExecutingEventArgs : EventArgs
Constructors
CommandExecutingEventArgs(SyntaxEditorCommandBase, Object)
Initializes a new instance of the CommandExecutingEventArgs class.
Declaration
public CommandExecutingEventArgs(SyntaxEditorCommandBase command, object commandParameter)
Parameters
SyntaxEditorCommandBase
command
The command. |
System.Object
commandParameter
The command parameter. |
Properties
Canceled
Gets a value indicating whether this CommandExecutingEventArgs is canceled.
Declaration
public bool Canceled { get; }
Property Value
System.Boolean
|
Command
Gets the command.
Declaration
public SyntaxEditorCommandBase Command { get; }
Property Value
SyntaxEditorCommandBase
The command. |
CommandParameter
Gets the command parameter.
Declaration
public object CommandParameter { get; }
Property Value
System.Object
The command parameter. |
Methods
Cancel()
Cancels this instance.
Declaration
public void Cancel()