GridBehaviorImpl
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
public abstract class GridBehaviorImpl : IGridBehavior
Inheritance: objectGridBehaviorImpl
Derived Classes:
Implements:
Constructors
protected GridBehaviorImpl()
Properties
The RadGridView associated with this navigator
public virtual RadGridView GridControl { get; }
Implements:
The RadGridView associated with this navigator
public virtual RadGridViewElement GridViewElement { get; }
Implements:
Methods
Initializes the IGridBehavior with the specified RadGridViewElement
public virtual void Initialize(RadGridViewElement gridRootElement)
The RadGridViewElement to associate with this object
Implements:
Occurs when the context menu of the RadGridView needs to be shown
public abstract bool OnContextMenu(MouseEventArgs e)
The MouseEventArgs containing data related to this event
Returns:Returns true if the event is processed
Implements:
Occurs when the RadGridView is double clicked by the mouse.
public abstract bool OnMouseDoubleClick(MouseEventArgs e)
The MouseEventArgs containing data related to this event
Returns:Returns true if the event is processed
Implements:
Occurs when the mouse pointer is over the RadGridView and a mouse button is pressed.
public abstract bool OnMouseDown(MouseEventArgs e)
The MouseEventArgs containing data related to this event
Returns:Returns true if the event is processed
Implements:
Occurs when the mouse pointer is moved over the RadGridView.
public abstract bool OnMouseMove(MouseEventArgs e)
The MouseEventArgs containing data related to this event
Returns:Returns true if the event is processed
Implements:
Occurs when the mouse pointer is over the RadGridView and a mouse button is released.
public abstract bool OnMouseUp(MouseEventArgs e)
The MouseEventArgs containing data related to this event
Returns:Returns true if the event is processed
Implements:
Occurs when the mouse wheel moves while the RadGridView has focus.
public abstract bool OnMouseWheel(MouseEventArgs e)
The MouseEventArgs containing data related to this event
Returns:Returns true if the event is processed
Implements:
Processes key events in RadGridView.
public abstract bool ProcessKey(KeyEventArgs keys)
The KeyPressEventArgs containing data related to this event
Returns:Returns true if the event is processed
Implements:
Processes key down events in RadGridView.
public abstract bool ProcessKeyDown(KeyEventArgs keys)
The KeyPressEventArgs containing data related to this event
Returns:Returns true if the event is processed
Implements:
Processes key press events in RadGridView.
public abstract bool ProcessKeyPress(KeyPressEventArgs keys)
The KeyPressEventArgs containing data related to this event
Returns:Returns true if the event is processed
Implements:
Processes key up events in RadGridView.
public abstract bool ProcessKeyUp(KeyEventArgs keys)
The KeyPressEventArgs containing data related to this event
Returns:Returns true if the event is processed
Implements: