New to Telerik UI for WinFormsStart a free 30-day trial

Encapsulates a result, returned by a IGridViewEventListener

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

C#
public class GridViewEventResult

Inheritance: objectGridViewEventResult

Constructors

Initializes a new instance of the GridViewEventResult class.

C#
public GridViewEventResult()

Initializes a new instance of the GridViewEventResult class.

C#
public GridViewEventResult(bool handled, bool stopDispatch)
Parameters:handledbool

The handled.

stopDispatchbool

The stop dispatch.

Properties

Determines whether the event is handled (processed). This means that the default processing is not needed.

C#
public bool Handled { get; set; }

Determines whether event dispatching should be canceled.

C#
public bool StopDispatch { get; set; }