ClassDefaultInputHandler
Class
Represents the default input handler for processing user input in the application.
Definition
Namespace:Telerik.Windows.Documents.UI.Extensibility
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Syntax:
cs-api-definition
public class DefaultInputHandler : IRichTextBoxInputHandler
Inheritance: objectDefaultInputHandler
Implements:
Constructors
DefaultInputHandler()
Declaration
cs-api-definition
public DefaultInputHandler()
Methods
HandleInput(RadRichTextBox, PreviewEditorKeyEventArgs)
Handles input events for the specified RadRichTextBox, providing custom processing for the PreviewEditorKeyEventArgs.
Declaration
cs-api-definition
public bool HandleInput(RadRichTextBox richTextBox, PreviewEditorKeyEventArgs e)
Parameters
richTextBox
The RadRichTextBox instance that receives the input.
e
The key event arguments containing information about the input event.
Returns
Returns a boolean indicating whether the input event was handled or not.
Implements