Blazor | ComponentOne
C1.Blazor.Grid Assembly / C1.Blazor.Grid Namespace / FlexGrid Class / AutoGeneratingColumn Property

In This Topic
    AutoGeneratingColumn Property
    In This Topic
    Occurs when an auto-generated column is being created.
    Syntax
    'Declaration
     
    
    Public Property AutoGeneratingColumn As EventHandler(Of GridAutoGeneratingColumnEventArgs)
    public EventHandler<GridAutoGeneratingColumnEventArgs> AutoGeneratingColumn {get; set;}
    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 CancelEventArgs.Cancel to true, in this case there will not be column for this property.
    See Also