New to Telerik UI for WinFormsStart a free 30-day trial

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: AutoCompleteBoxInputHandlerTextBoxInputHandler

Methods

Prcesses the mouse enter.

C#
void PrcessMouseEnter(EventArgs e)
Parameters:eEventArgs

The EventArgs instance containing the event data.

Processes the double click.

C#
bool ProcessDoubleClick(EventArgs e)
Parameters:eEventArgs

The EventArgs instance containing the event data.

Returns:

bool

Processes the key down.

C#
bool ProcessKeyDown(KeyEventArgs e)
Parameters:eKeyEventArgs

The KeyEventArgs instance containing the event data.

Returns:

bool

Processes the key press.

C#
bool ProcessKeyPress(KeyPressEventArgs e)
Parameters:eKeyPressEventArgs

The KeyPressEventArgs instance containing the event data.

Returns:

bool

Processes the key up.

C#
bool ProcessKeyUp(KeyEventArgs e)
Parameters:eKeyEventArgs

The KeyEventArgs instance containing the event data.

Returns:

bool

Processes the mouse down.

C#
bool ProcessMouseDown(MouseEventArgs e)
Parameters:eMouseEventArgs

The MouseEventArgs instance containing the event data.

Returns:

bool

Processes the mouse leave.

C#
void ProcessMouseLeave(EventArgs e)
Parameters:eEventArgs

The EventArgs instance containing the event data.

Processes the mouse move.

C#
bool ProcessMouseMove(MouseEventArgs e)
Parameters:eMouseEventArgs

The MouseEventArgs instance containing the event data.

Returns:

bool

Processes the mouse up.

C#
bool ProcessMouseUp(MouseEventArgs e)
Parameters:eMouseEventArgs

The MouseEventArgs instance containing the event data.

Returns:

bool

Processes the mouse wheel.

C#
bool ProcessMouseWheel(MouseEventArgs e)
Parameters:eMouseEventArgs

The MouseEventArgs instance containing the event data.

Returns:

bool