ComponentOne Xamarin Edition
AutoGeneratingColumn Event
C1.Xamarin.Forms.Grid Assembly > C1.Xamarin.Forms.Grid Namespace > FlexGrid Class : AutoGeneratingColumn Event
Occurs when an auto-generated column is being created.
Syntax
public event EventHandler<GridAutoGeneratingColumnEventArgs> AutoGeneratingColumn
Event Data

The event handler receives an argument of type GridAutoGeneratingColumnEventArgs containing data related to this event. The following GridAutoGeneratingColumnEventArgs properties provide information specific to this event.

PropertyDescription
Gets or sets a value indicating whether the associated event should be canceled. (Inherited from C1.Xamarin.Forms.Grid.CancelEventArgs)
Gets a value indicating whether the associated event is cancellable. (Inherited from C1.Xamarin.Forms.Grid.CancelEventArgs)
Gets or sets the column that is being auto-generated.  
Gets the property info associated to the column that is being auto-generated.  
Remarks
You can change the auto-generated column by setting the property GridAutoGeneratingColumnEventArgs.Column. You can cancel an auto-generated column by setting the property Cancel to true, in this case there will not be column for this property.
See Also