'Declaration
Public Event AutoGeneratingColumn As EventHandler(Of GridAutoGeneratingColumnEventArgs)
'Usage
Dim instance As FlexGrid Dim handler As EventHandler(Of GridAutoGeneratingColumnEventArgs) AddHandler instance.AutoGeneratingColumn, handler
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.
Property | Description |
---|---|
Cancel | Gets or sets a value indicating whether the associated event should be canceled. (Inherited from C1.Android.Grid.CancelEventArgs) |
Cancellable | (Inherited from C1.Android.Grid.CancelEventArgs) |
Column | Gets or sets the column that is being auto-generated. |
Property | 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