Class ColumnVisibilityChangedEventArgs
Provides information about the ColumnVisibilityChanged event.
Inheritance
System.Object
ColumnVisibilityChangedEventArgs
Inherited Members
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class ColumnVisibilityChangedEventArgs : GridEventBaseArgs
Constructors
ColumnVisibilityChangedEventArgs()
Declaration
public ColumnVisibilityChangedEventArgs()
Properties
HiddenColumns
Gets the list of hidden GridColumn which is selected in column chooser.
Declaration
public List<GridColumn> HiddenColumns { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<GridColumn> | A list of columns that represents the hidden columns using the column chooser. |
VisibleColumns
Gets the list of visible columns in the column chooser.
Declaration
public List<GridColumn> VisibleColumns { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<GridColumn> | A list of GridColumn that represents the visible columns in the grid, By default the value is |