Class GridUnboundRowEventArgs
Provides data for QueryUnboundRow event.
Namespace: Syncfusion.SfDataGrid
Assembly: Syncfusion.SfDataGrid.iOS.dll
Syntax
public class GridUnboundRowEventArgs : GridHandledEventArgs
Properties
CellType
Gets the cell type associated with SfDataGrid.UnboundRowCellRenderers for UnboundRow cell.
Declaration
public string CellType { get; }
Property Value
Type | Description |
---|---|
System.String | A string that specifies the cell type of unbound cell. |
Remarks
SfDataGrid allows to add custom cell types by adding associated renderer in SfDataGrid.UnboundRowCellRenderers.
Column
Gets the GridColumn of the UnboundRow cell triggers this event.
Declaration
public GridColumn Column { get; }
Property Value
Type |
---|
GridColumn |
GridUnboundRow
Gets the associated GridUnboundRow of the cell that triggered the event.
Declaration
public GridUnboundRow GridUnboundRow { get; }
Property Value
Type |
---|
GridUnboundRow |
RowColumnIndex
Gets or sets the RowColumnIndex of UnboundRow cell which triggers this event.
Declaration
public RowColumnIndex RowColumnIndex { get; set; }
Property Value
Type | Description |
---|---|
RowColumnIndex | The RowColumnIndex of the unbound cell which triggers this event. |
UnboundAction
Gets the constants that specifies the actions for triggering the QueryUnboundRow event.
Declaration
public UnboundActions UnboundAction { get; }
Property Value
Type | Description |
---|---|
UnboundActions | The |
Remarks
The UnboundAction – QueryData denotes, the event is raised to get or query the value and settings for cell and the UnboundAction - CommitData denotes, the event is raised to notify or commit the edited value.
Value
Gets or sets the value for the cell in unbound row based on UnboundAction .
Declaration
public object Value { get; set; }
Property Value
Type | Description |
---|---|
System.Object | An object that contains the value for the unbound cell. |