InterfaceIGridViewEventListener
Definition
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.
DesiredProcessMode
Gets the event process mode for this instance.
Declaration
GridEventProcessMode DesiredProcessMode { get; }
Property Value
Priority
Gets the priority of the current instance.
Declaration
EventListenerPriority Priority { get; }
Property Value
Methods
AnalyzeQueue(List<GridViewEvent>)
Allows a listener to examine events queue and optionally to remove/add events.
Declaration
bool AnalyzeQueue(List<GridViewEvent> events)
Parameters
events
List<GridViewEvent>
Returns
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
eventData
Returns
PreProcessEvent(GridViewEvent)
Allows previewing of an event that is about to be dispatched.
Declaration
GridViewEventResult PreProcessEvent(GridViewEvent eventData)
Parameters
eventData
Returns
ProcessEvent(GridViewEvent)
Core entry point for receiving and processing an event.
Declaration
GridViewEventResult ProcessEvent(GridViewEvent eventData)
Parameters
eventData
Returns