Defines how a IGridViewEventListener instance wants to process an internal GridView event.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
C#
[Flags]
public enum GridEventProcessMode
Fields
All process callbacks plus queue analysis
C#
All = AllProcess | AnalyzeQueue
All callbacks participate in event dispatching.
C#
AllProcess = Process | PreProcess | PostProcess
The listener wants to analyze the queue of events that are to be dispatched.
C#
AnalyzeQueue = 8
The PostProcessEvent callback is executed.
C#
PostProcess = 4
The PreProcessEvent callback is executed.
C#
PreProcess = 2
The core ProcessEvent callback is executed.
C#
Process = 1