Class GridViewEventResult
Encapsulates a result, returned by a IGridViewEventListener
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class GridViewEventResult
Constructors
GridViewEventResult()
Initializes a new instance of the GridViewEventResult class.
Declaration
public GridViewEventResult()
GridViewEventResult(Boolean, Boolean)
Initializes a new instance of the GridViewEventResult class.
Declaration
public GridViewEventResult(bool handled, bool stopDispatch)
Parameters
System.Boolean
handled
The handled. |
System.Boolean
stopDispatch
The stop dispatch. |
Properties
Handled
Determines whether the event is handled (processed). This means that the default processing is not needed.
Declaration
public bool Handled { get; set; }
Property Value
System.Boolean
|
StopDispatch
Determines whether event dispatching should be canceled.
Declaration
public bool StopDispatch { get; set; }
Property Value
System.Boolean
|