Provides data for the UntrackableCommandExecuting event.
Definition
Namespace:Telerik.Windows.Documents.Model
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Syntax:
C#
public class UntrackableCommandExecutingEventArgs : EventArgs
Inheritance: objectEventArgsUntrackableCommandExecutingEventArgs
Inherited Members
Constructors
Properties
Gets the description of the untrackable command that is being executed.
C#
public string Description { get; }
A string that represents the description of the command.
Occurs when a command is being executed, allowing the handling of the event.
C#
public bool Handled { get; set; }
A boolean value indicating whether the command execution should be handled or not. If set to true, the command execution will be marked as handled, preventing further processing.
Indicates whether the command execution should continue.
C#
public bool ShouldContinue { get; set; }