Class ColumnChooserEventArgs
Defines the event arguments of the column chooser actions.
Implements
System.IEquatable<ColumnChooserEventArgs>
Inherited Members
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class ColumnChooserEventArgs : GridEventBaseArgs, IEquatable<ColumnChooserEventArgs>
Constructors
ColumnChooserEventArgs()
Declaration
public ColumnChooserEventArgs()
Properties
Cancel
Cancel the action
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Columns
Defines the display columns of column chooser.
Declaration
public List<GridColumn> Columns { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<GridColumn> |
DialogInstance
Specifies the instance of column chooser dialog.
Declaration
public SfDialog DialogInstance { get; set; }
Property Value
Type | Description |
---|---|
SfDialog |
Element
Defines the parent element.
Declaration
public DOM Element { get; set; }
Property Value
Type | Description |
---|---|
DOM |
RequestType
Defines the current action.
Declaration
public Action RequestType { get; set; }
Property Value
Type | Description |
---|---|
Action |
SearchOperator
Defines the operator for column chooser search request
Declaration
public string SearchOperator { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
Equals(ColumnChooserEventArgs)
Declaration
public bool Equals(ColumnChooserEventArgs columnChooserEventArgs)
Parameters
Type | Name | Description |
---|---|---|
ColumnChooserEventArgs | columnChooserEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>