Interface IGridViewEventListener
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public interface IGridViewEventListener
Properties
DesiredEvents
Gets the event type(s) this listener needs to process.
Declaration
GridEventType DesiredEvents { get; }
Property Value
GridEventType
|
DesiredProcessMode
Gets the event process mode for this instance.
Declaration
GridEventProcessMode DesiredProcessMode { get; }
Property Value
GridEventProcessMode
|
Priority
Gets the priority of the current instance.
Declaration
EventListenerPriority Priority { get; }
Property Value
EventListenerPriority
|
Methods
AnalyzeQueue(List<GridViewEvent>)
Allows a listener to examine events queue and optionally to remove/add events.
Declaration
bool AnalyzeQueue(List<GridViewEvent> events)
Parameters
System.Collections.Generic.List<GridViewEvent>
events
|
Returns
System.Boolean
True if the listener has actually modified the queue, false otherwise. |
PostProcessEvent(GridViewEvent)
Allows additional processing of an event that has been just dispatched.
Declaration
GridViewEventResult PostProcessEvent(GridViewEvent eventData)
Parameters
GridViewEvent
eventData
|
Returns
GridViewEventResult
|
PreProcessEvent(GridViewEvent)
Allows previewing of an event that is about to be dispatched.
Declaration
GridViewEventResult PreProcessEvent(GridViewEvent eventData)
Parameters
GridViewEvent
eventData
|
Returns
GridViewEventResult
|
ProcessEvent(GridViewEvent)
Core entry point for receiving and processing an event.
Declaration
GridViewEventResult ProcessEvent(GridViewEvent eventData)
Parameters
GridViewEvent
eventData
|
Returns
GridViewEventResult
|