ClassUntrackableCommandExecutingEventArgs
Class
Provides data for the UntrackableCommandExecuting event.
Definition
Namespace:Telerik.Windows.Documents.Model
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Syntax:
cs-api-definition
public class UntrackableCommandExecutingEventArgs : EventArgs
Inheritance: objectEventArgsUntrackableCommandExecutingEventArgs
Inherited Members
Constructors
UntrackableCommandExecutingEventArgs(string)
Declaration
cs-api-definition
public UntrackableCommandExecutingEventArgs(string description)
Parameters
description
Properties
Description
Gets the description of the untrackable command that is being executed.
Handled
Occurs when a command is being executed, allowing the handling of the event.
Declaration
cs-api-definition
public bool Handled { get; set; }
Property Value
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.