Class AutoGeneratingColumnEventArgs
Provides data for the AutoGeneratingColumn event.
Inherited Members
Namespace: Syncfusion.SfDataGrid
Assembly: Syncfusion.SfDataGrid.iOS.dll
Syntax
public class AutoGeneratingColumnEventArgs : GridCancelEventArgs
Constructors
AutoGeneratingColumnEventArgs(GridColumn, Object, Type)
Initializes a new instance of the AutoGeneratingColumnEventArgs class.
Declaration
public AutoGeneratingColumnEventArgs(GridColumn column, object originalSource, Type propertyType = null)
Parameters
Type | Name | Description |
---|---|---|
GridColumn | column | The column that is being generated. |
System.Object | originalSource | The original source that triggers the event. |
System.Type | propertyType | provides the type of underlying model object. |
Properties
Column
Gets or sets the column.
Declaration
public GridColumn Column { get; set; }
Property Value
Type |
---|
GridColumn |
PropertyType
Gets the type of the underlying model object.
Declaration
public Type PropertyType { get; }
Property Value
Type |
---|
System.Type |