Class QueryUnboundColumnInfoArgs
Provides data for
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.WinForms.DataGrid.Events
Assembly: Syncfusion.SfDataGrid.WinForms.dll
Syntax
public class QueryUnboundColumnInfoArgs : GridEventArgs
Properties
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 QueryUnboundColumnInfo 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 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 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. |