Class GridHandledEventArgs
Serves as a base class for the event argument classes in a SfDataGrid control.
Inheritance
System.Object
GridHandledEventArgs
Inherited Members
Namespace: Syncfusion.SfDataGrid
Assembly: Syncfusion.SfDataGrid.iOS.dll
Syntax
public class GridHandledEventArgs : GridEventArgs
Constructors
GridHandledEventArgs(Boolean, Object)
Initializes a new instance of the GridHandledEventArgs class using the specified handled value and original source.
Declaration
public GridHandledEventArgs(bool handled, object originalSource)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | handled | A boolean value specifying whether the event is handled. |
System.Object | originalSource | The original source of the event. |
GridHandledEventArgs(Object)
Initializes a new instance of the GridHandledEventArgs class using the specified source.
Declaration
public GridHandledEventArgs(object originalSource)
Parameters
Type | Name | Description |
---|---|---|
System.Object | originalSource | The original source of the event. |
Properties
Handled
Gets or sets a value indicating whether the event is handled.
Declaration
public bool Handled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | True if the event has been handled, otherwise false. The default value is false. |