ITextBoxInputHandler
Interface
Represents a RadTextBoxControlElement keyboard and mouse input handler
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.UI.dll
Syntax:
C#
public interface ITextBoxInputHandler
Derived Classes:
Methods
Processes the key down.
C#
bool ProcessKeyDown(KeyEventArgs e)
The KeyEventArgs instance containing the event data.
Returns:Processes the key press.
C#
bool ProcessKeyPress(KeyPressEventArgs e)
The KeyPressEventArgs instance containing the event data.
Returns:Processes the key up.
C#
bool ProcessKeyUp(KeyEventArgs e)
The KeyEventArgs instance containing the event data.
Returns:Processes the mouse down.
C#
bool ProcessMouseDown(MouseEventArgs e)
The MouseEventArgs instance containing the event data.
Returns:Processes the mouse move.
C#
bool ProcessMouseMove(MouseEventArgs e)
The MouseEventArgs instance containing the event data.
Returns:Processes the mouse up.
C#
bool ProcessMouseUp(MouseEventArgs e)
The MouseEventArgs instance containing the event data.
Returns:Processes the mouse wheel.
C#
bool ProcessMouseWheel(MouseEventArgs e)
The MouseEventArgs instance containing the event data.
Returns: