Class GridUnboundColumnEventsArgs
Provides data for QueryUnboundColumnValue event.
Inherited Members
Namespace: Syncfusion.UI.Xaml.Grid
Assembly: Syncfusion.SfGrid.UWP.dll
Syntax
public class GridUnboundColumnEventsArgs : GridEventArgsProperties
Column
Gets the GridColumn 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 | 
|---|
| System.Object | 
UnBoundAction
Gets the constants that specifies the actions for triggering the QueryUnboundColumnValue event.
Declaration
public UnBoundActions UnBoundAction { get; }Property Value
| Type | Description | 
|---|---|
| UnBoundActions | The UnBoundActions which triggered this event. | 
Remarks
The UnBoundAction – QueryData denotes, the event is raised to get or query the value for cell. The UnBoundAction - CommitData denotes, the event is raised to notify or commit the edited value.
Value
Gets or sets the value for GridUnBoundColumn cell based on UnBoundAction.
Declaration
public object Value { get; set; }Property Value
| Type | Description | 
|---|---|
| System.Object | An object that contains the value for the GridUnBoundColumn. |