Class CommandExecutedEventArgs
Provides data for CommandExecuted event.
Inheritance
System.Object
System.EventArgs
CommandExecutedEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.WinForms.Documents.RichTextBoxCommands
Assembly: Telerik.WinControls.RichTextEditor.dll
Syntax
public class CommandExecutedEventArgs : EventArgs
Constructors
CommandExecutedEventArgs(RichTextBoxCommandBase)
Initializes a new instance of the CommandExecutedEventArgs class.
Declaration
public CommandExecutedEventArgs(RichTextBoxCommandBase command)
Parameters
RichTextBoxCommandBase
command
The command. |
CommandExecutedEventArgs(RichTextBoxCommandBase, Object)
Initializes a new instance of the CommandExecutedEventArgs class.
Declaration
public CommandExecutedEventArgs(RichTextBoxCommandBase command, object commandParameter)
Parameters
RichTextBoxCommandBase
command
The command. |
System.Object
commandParameter
The command parameter. |
Properties
Command
Gets the command.
Declaration
public RichTextBoxCommandBase Command { get; }
Property Value
RichTextBoxCommandBase
The command. |
CommandParameter
Gets the command parameter.
Declaration
public object CommandParameter { get; }
Property Value
System.Object
The command parameter. |