Interface
IGridViewEventListener

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

cs-api-definition
public interface IGridViewEventListener

Properties

DesiredEvents

Gets the event type(s) this listener needs to process.

Declaration

cs-api-definition
GridEventType DesiredEvents { get; }

Property Value

GridEventType

DesiredProcessMode

Gets the event process mode for this instance.

Declaration

cs-api-definition
GridEventProcessMode DesiredProcessMode { get; }

Property Value

GridEventProcessMode

Priority

Gets the priority of the current instance.

Declaration

cs-api-definition
EventListenerPriority Priority { get; }

Property Value

EventListenerPriority

Methods

AnalyzeQueue(List<GridViewEvent>)

Allows a listener to examine events queue and optionally to remove/add events.

Declaration

cs-api-definition
bool AnalyzeQueue(List<GridViewEvent> events)

Parameters

events

List<GridViewEvent>

Returns

bool

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

cs-api-definition
GridViewEventResult PostProcessEvent(GridViewEvent eventData)

Parameters

eventData

GridViewEvent

Returns

GridViewEventResult

PreProcessEvent(GridViewEvent)

Allows previewing of an event that is about to be dispatched.

Declaration

cs-api-definition
GridViewEventResult PreProcessEvent(GridViewEvent eventData)

Parameters

eventData

GridViewEvent

Returns

GridViewEventResult

ProcessEvent(GridViewEvent)

Core entry point for receiving and processing an event.

Declaration

cs-api-definition
GridViewEventResult ProcessEvent(GridViewEvent eventData)

Parameters

eventData

GridViewEvent

Returns

GridViewEventResult