New to Telerik UI for WPFStart a free 30-day trial

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 EventArgs.Empty

Constructors

C#
public UntrackableCommandExecutingEventArgs(string description)
Parameters:descriptionstring

Properties

Gets the description of the untrackable command that is being executed.

C#
public string Description { get; }
Property Value:

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; }
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.

Indicates whether the command execution should continue.

C#
public bool ShouldContinue { get; set; }