Class UntrackableCommandExecutingEventArgs
Provides data for the UntrackableCommandExecuting event.
Inheritance
Namespace: Telerik.Windows.Documents.Model
Assembly: Telerik.Windows.Controls.RichTextBox.dll
Syntax
public class UntrackableCommandExecutingEventArgs : EventArgs
Constructors
UntrackableCommandExecutingEventArgs(String)
Declaration
public UntrackableCommandExecutingEventArgs(string description)
Parameters
System.String
description
|
Properties
Description
Gets the description of the untrackable command that is being executed.
Declaration
public string Description { get; }
Property Value
System.String
A System.String that represents the description of the command. |
Handled
Occurs when a command is being executed, allowing the handling of the event.
Declaration
public bool Handled { get; set; }
Property Value
System.Boolean
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. |
ShouldContinue
Indicates whether the command execution should continue.
Declaration
public bool ShouldContinue { get; set; }
Property Value
System.Boolean
|