Class GridUnboundColumnEventsArgs
Provides data for QueryUnboundColumnValue event.
Inherited Members
Namespace: Syncfusion.SfDataGrid.XForms
Assembly: Syncfusion.SfDataGrid.XForms.dll
Syntax
public class GridUnboundColumnEventsArgs : GridEventArgs
Properties
CellType
Gets or sets the cell type of the unbound cell.
Declaration
public string CellType { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string that specifies the cell type of unbound cell. |
Column
Gets the grid column of the cell triggers this event.
Declaration
public GridColumn Column { get; }
Property Value
Type |
---|
GridColumn |
Record
Gets the data object associated with the row which has the grid cell triggered this event.
Declaration
public object Record { get; }
Property Value
Type | Description |
---|---|
System.Object | The data object associated with the row which has the grid cell triggered this event. |
RowColumnIndex
Gets or sets the row column index of the unbound cell which triggers this event.
Declaration
public RowColumnIndex RowColumnIndex { get; set; }
Property Value
Type | Description |
---|---|
RowColumnIndex | The row column index of the unbound cell which triggers this event. |
UnboundAction
Gets the UnboundActions that specifies the possible actions (commit data or query data or paste data) performed in the unbound column.
Declaration
public UnboundActions UnboundAction { get; }
Property Value
Type | Description |
---|---|
UnboundActions | The UnboundActions that specifies the possible actions (commit data or query data or paste data) performed in the unbound column. |
Remarks
The UnboundAction – QueryData denotes, the event is raised to get or query the value 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 grid unbound column's cell based on the possible actions (commit data or query data or paste data) performed in the unbound column.
Declaration
public object Value { get; set; }
Property Value
Type | Description |
---|---|
System.Object | An object that contains the cell value for the grid unbound column. |