Class
UntrackableCommandExecutingEventArgs

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

Constructors

UntrackableCommandExecutingEventArgs(string)

Declaration

cs-api-definition
public UntrackableCommandExecutingEventArgs(string description)

Parameters

description

string

Properties

Description

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

Declaration

cs-api-definition
public string Description { get; }

Property Value

string

A string that represents the description of the command.

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

bool

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

cs-api-definition
public bool ShouldContinue { get; set; }

Property Value

bool