Class PreviewEditorKeyEventArgs
Provides data for the Preview Editor key event, encapsulating information about the key event state.
Inheritance
Namespace: Telerik.Windows.Documents
Assembly: Telerik.Windows.Controls.RichTextBox.dll
Syntax
public class PreviewEditorKeyEventArgs : EventArgs
Constructors
PreviewEditorKeyEventArgs(KeyEventArgs)
Declaration
public PreviewEditorKeyEventArgs(KeyEventArgs originalArgs)
Parameters
System.Windows.Input.KeyEventArgs
originalArgs
|
Properties
Key
Represents the key associated with the Preview Editor key event.
Declaration
public Key Key { get; }
Property Value
System.Windows.Input.Key
The key that triggered the event. This value corresponds to the specific key pressed by the user. |
OriginalArgs
Gets the original key event arguments associated with the current preview editor event.
Declaration
public KeyEventArgs OriginalArgs { get; }
Property Value
System.Windows.Input.KeyEventArgs
|
SuppressDefaultAction
Gets or sets a value indicating whether the default action for the key event should be suppressed.
Declaration
public bool SuppressDefaultAction { get; set; }
Property Value
System.Boolean
A boolean value where |