Class ControlDisplayVisibilityInfo
A class that details which column is currently visible in a IBaseGrid<T>, as users can hide/show all columns
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: LemonEdge.Client.Core.Views.Core
Assembly: 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 |
---|---|
System.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 |
---|---|
System.Boolean |