Interface IInputElement
Establishes the common events and also the event-related properties and methods for basic input processing by Telerik Presentation Foundation (TPF) elements.
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public interface IInputElement
Properties
Focusable
Declaration
bool Focusable { get; set; }
Property Value
System.Boolean
|
IsEnabled
Declaration
bool IsEnabled { get; }
Property Value
System.Boolean
|
IsFocused
Declaration
bool IsFocused { get; }
Property Value
System.Boolean
|
IsMouseCaptured
Declaration
bool IsMouseCaptured { get; }
Property Value
System.Boolean
|
IsMouseOver
Declaration
bool IsMouseOver { get; }
Property Value
System.Boolean
|
Methods
CaptureMouse()
Declaration
bool CaptureMouse()
Returns
System.Boolean
|
Focus()
Declaration
bool Focus()
Returns
System.Boolean
|
ReleaseMouseCapture()
Declaration
void ReleaseMouseCapture()
Events
KeyDown
Declaration
event KeyEventHandler KeyDown
Event Type
System.Windows.Forms.KeyEventHandler
|
KeyPress
Declaration
event KeyPressEventHandler KeyPress
Event Type
System.Windows.Forms.KeyPressEventHandler
|
KeyUp
Declaration
event KeyEventHandler KeyUp
Event Type
System.Windows.Forms.KeyEventHandler
|
MouseDown
Declaration
event MouseEventHandler MouseDown
Event Type
System.Windows.Forms.MouseEventHandler
|
MouseEnter
Declaration
event EventHandler MouseEnter
Event Type
System.EventHandler
|
MouseLeave
Declaration
event EventHandler MouseLeave
Event Type
System.EventHandler
|
MouseMove
Declaration
event MouseEventHandler MouseMove
Event Type
System.Windows.Forms.MouseEventHandler
|
MouseUp
Declaration
event MouseEventHandler MouseUp
Event Type
System.Windows.Forms.MouseEventHandler
|
MouseWheel
Declaration
event MouseEventHandler MouseWheel
Event Type
System.Windows.Forms.MouseEventHandler
|