Class DataGridUnboundColumnEventArgs
Provides data for QueryUnboundColumnValue event.
Inheritance
Namespace: Syncfusion.Maui.DataGrid
Assembly: Syncfusion.Maui.DataGrid.dll
Syntax
public class DataGridUnboundColumnEventArgs : Object
Constructors
DataGridUnboundColumnEventArgs(DataGridUnboundActions, Object, DataGridColumn, Object)
Initializes a new instance of the DataGridUnboundColumnEventArgs class.
Declaration
public DataGridUnboundColumnEventArgs(DataGridUnboundActions action, object value, DataGridColumn column, object record)
Parameters
Type | Name | Description |
---|---|---|
DataGridUnboundActions | action | |
System.Object | value | |
DataGridColumn | column | |
System.Object | record |
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 DataGridColumn Column { get; }
Property Value
Type |
---|
DataGridColumn |
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 Nullable<RowColumnIndex> RowColumnIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<RowColumnIndex> | The row column index of the unbound cell which triggers this event. |
UnboundAction
Gets the
Declaration
public Nullable<DataGridUnboundActions> UnboundAction { get; }
Property Value
Type | Description |
---|---|
System.Nullable<DataGridUnboundActions> | The |
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. |