Class CommandErrorEventArgs
Represents the event arguments for a command error in the RichTextBox.
Inheritance
Namespace: Telerik.Windows.Documents.RichTextBoxCommands
Assembly: Telerik.Windows.Controls.RichTextBox.dll
Syntax
public class CommandErrorEventArgs : EventArgs
Constructors
CommandErrorEventArgs(Exception)
Declaration
public CommandErrorEventArgs(Exception exception)
Parameters
System.Exception
exception
|
Properties
Exception
Gets the exception that represents the error occurred during the command execution.
Declaration
public Exception Exception { get; }
Property Value
System.Exception
The exception that was thrown, or null if no exception was thrown. |
Handled
Gets or sets a value indicating whether the command error has been handled.
Declaration
public bool Handled { get; set; }
Property Value
System.Boolean
A boolean value that specifies if the command error has been handled. |