Class QueryUnboundRowInfoArgs
Provides data for
Inheritance
Inherited Members
Namespace: Syncfusion.WinForms.DataGrid.Events
Assembly: Syncfusion.SfDataGrid.WinForms.dll
Syntax
public class QueryUnboundRowInfoArgs : GridHandledEventArgs
Properties
CellType
Gets or sets the cell type associated with SfDataGrid.UnboundRowCellRenderers for UnboundRow cell.
Declaration
public string CellType { get; set; }
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 |
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 QueryUnboundRowInfo 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.
UnboundRow
Gets the associated UnboundRow of the cell triggered event.
Declaration
public GridUnboundRow UnboundRow { get; }
Property Value
Type |
---|
GridUnboundRow |
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. |