Class DataGridUnboundRowEventArgs
Provides data for the QueryUnboundRow event.
Inheritance
System.Object
DataGridUnboundRowEventArgs
Namespace: Syncfusion.Maui.DataGrid
Assembly: Syncfusion.Maui.DataGrid.dll
Syntax
public class DataGridUnboundRowEventArgs : HandledEventArgs
Constructors
DataGridUnboundRowEventArgs(DataGridUnboundRow, DataGridUnboundActions, Object, DataGridColumn, String, Object, RowColumnIndex)
Declaration
public DataGridUnboundRowEventArgs(DataGridUnboundRow gridUnboundRow, DataGridUnboundActions action, object value, DataGridColumn column, string cellType, object originalSource, RowColumnIndex rowColumnIndex)
Parameters
| Type | Name | Description |
|---|---|---|
| DataGridUnboundRow | gridUnboundRow | |
| DataGridUnboundActions | action | |
| System.Object | value | |
| DataGridColumn | column | |
| System.String | cellType | |
| System.Object | originalSource | |
| RowColumnIndex | rowColumnIndex |
Properties
CellType
Gets the cell type associated with the unbound row cell renderers for unbound row cell.
Declaration
public string CellType { get; }
Property Value
| Type |
|---|
| System.String |
Column
Gets the DataGridColumn of the unbound row cell that triggered this event.
Declaration
public DataGridColumn Column { get; }
Property Value
| Type |
|---|
| DataGridColumn |
GridUnboundRow
Gets the associated DataGridUnboundRow of the cell that triggered the event.
Declaration
public DataGridUnboundRow GridUnboundRow { get; }
Property Value
| Type |
|---|
| DataGridUnboundRow |
RowColumnIndex
Gets or sets the RowColumnIndex of UnboundRow cell which triggered this event.
Declaration
public RowColumnIndex RowColumnIndex { get; set; }
Property Value
| Type |
|---|
| RowColumnIndex |
UnboundAction
Gets the value that specifies the action for triggered the event.
Declaration
public DataGridUnboundActions UnboundAction { get; }
Property Value
| Type |
|---|
| DataGridUnboundActions |
Value
Gets or sets the value for the cell in unbound row based on unbound action.
Declaration
public object Value { get; set; }
Property Value
| Type |
|---|
| System.Object |