Class
GridViewEventResult

Encapsulates a result, returned by a IGridViewEventListener

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

cs-api-definition
public class GridViewEventResult

Inheritance: objectGridViewEventResult

Constructors

GridViewEventResult()

Initializes a new instance of the GridViewEventResult class.

Declaration

cs-api-definition
public GridViewEventResult()

GridViewEventResult(bool, bool)

Initializes a new instance of the GridViewEventResult class.

Declaration

cs-api-definition
public GridViewEventResult(bool handled, bool stopDispatch)

Parameters

handled

bool

The handled.

stopDispatch

bool

The stop dispatch.

Properties

Handled

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

Declaration

cs-api-definition
public bool Handled { get; set; }

Property Value

bool

StopDispatch

Determines whether event dispatching should be canceled.

Declaration

cs-api-definition
public bool StopDispatch { get; set; }

Property Value

bool