Interface ITextBoxInputHandler
Represents a RadTextBoxControlElement keyboard and mouse input handler
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public interface ITextBoxInputHandler
Methods
PrcessMouseEnter(EventArgs)
Prcesses the mouse enter.
Declaration
void PrcessMouseEnter(EventArgs e)
Parameters
System.EventArgs
e
The System.EventArgs instance containing the event data. |
ProcessDoubleClick(EventArgs)
Processes the double click.
Declaration
bool ProcessDoubleClick(EventArgs e)
Parameters
System.EventArgs
e
The System.EventArgs instance containing the event data. |
Returns
System.Boolean
|
ProcessKeyDown(KeyEventArgs)
Processes the key down.
Declaration
bool ProcessKeyDown(KeyEventArgs e)
Parameters
System.Windows.Forms.KeyEventArgs
e
The System.Windows.Forms.KeyEventArgs instance containing the event data. |
Returns
System.Boolean
|
ProcessKeyPress(KeyPressEventArgs)
Processes the key press.
Declaration
bool ProcessKeyPress(KeyPressEventArgs e)
Parameters
System.Windows.Forms.KeyPressEventArgs
e
The System.Windows.Forms.KeyPressEventArgs instance containing the event data. |
Returns
System.Boolean
|
ProcessKeyUp(KeyEventArgs)
Processes the key up.
Declaration
bool ProcessKeyUp(KeyEventArgs e)
Parameters
System.Windows.Forms.KeyEventArgs
e
The System.Windows.Forms.KeyEventArgs instance containing the event data. |
Returns
System.Boolean
|
ProcessMouseDown(MouseEventArgs)
Processes the mouse down.
Declaration
bool ProcessMouseDown(MouseEventArgs e)
Parameters
System.Windows.Forms.MouseEventArgs
e
The System.Windows.Forms.MouseEventArgs instance containing the event data. |
Returns
System.Boolean
|
ProcessMouseLeave(EventArgs)
Processes the mouse leave.
Declaration
void ProcessMouseLeave(EventArgs e)
Parameters
System.EventArgs
e
The System.EventArgs instance containing the event data. |
ProcessMouseMove(MouseEventArgs)
Processes the mouse move.
Declaration
bool ProcessMouseMove(MouseEventArgs e)
Parameters
System.Windows.Forms.MouseEventArgs
e
The System.Windows.Forms.MouseEventArgs instance containing the event data. |
Returns
System.Boolean
|
ProcessMouseUp(MouseEventArgs)
Processes the mouse up.
Declaration
bool ProcessMouseUp(MouseEventArgs e)
Parameters
System.Windows.Forms.MouseEventArgs
e
The System.Windows.Forms.MouseEventArgs instance containing the event data. |
Returns
System.Boolean
|
ProcessMouseWheel(MouseEventArgs)
Processes the mouse wheel.
Declaration
bool ProcessMouseWheel(MouseEventArgs e)
Parameters
System.Windows.Forms.MouseEventArgs
e
The System.Windows.Forms.MouseEventArgs instance containing the event data. |
Returns
System.Boolean
|