Class ControlDisplayVisibilityInfo
A class that details which column is currently visible in a IBaseGrid<T>, as users can hide/show all columns
Inherited Members
Namespace: LemonEdge.Client.Core.Views.Core
Assembly: LemonEdge.ClientCore.dll
Syntax
public class ControlDisplayVisibilityInfo
Constructors
ControlDisplayVisibilityInfo(ColumnDescriptor)
Creates a new instance of the control visibility info class for the specific grid column
Declaration
public ControlDisplayVisibilityInfo(ColumnDescriptor colDesc)
Parameters
Type | Name | Description |
---|---|---|
ColumnDescriptor | colDesc | The definition of the column within a IBaseGrid<T> |
Properties
ColInfo
The definition of the column within a IBaseGrid<T>
Declaration
public ColumnDescriptor ColInfo { get; }
Property Value
Type | Description |
---|---|
ColumnDescriptor |
GroupKey
Holds the key of the IBaseGrid<T> column grouping that this ColInfo belongs to
Declaration
public string GroupKey { get; set; }
Property Value
Type | Description |
---|---|
string |
Visibile
Indicates whether or not the specified ColInfo is currently visible within the grid or not
Declaration
public bool Visibile { get; set; }
Property Value
Type | Description |
---|---|
bool |