Class GridColumnStateBase
Describes a column in the State.
Inheritance
System.Object
GridColumnStateBase
Namespace: Telerik.Blazor.Components.Common.Grid.State
Assembly: Telerik.Blazor.dll
Syntax
public class GridColumnStateBase : Object
Constructors
GridColumnStateBase()
Declaration
public GridColumnStateBase()
GridColumnStateBase(Int32, String, Nullable<Boolean>)
Declaration
public GridColumnStateBase(int index, string width, Nullable<bool> visible)
Parameters
System.Int32
index
|
System.String
width
|
System.Nullable<System.Boolean>
visible
|
Properties
Field
Gets the Field of the column, if it has one set.
Declaration
public string Field { get; }
Property Value
System.String
|
Id
Gets the Id of the column, if it has one set.
Declaration
public string Id { get; }
Property Value
System.String
|
Index
The position of the column in the column list.
Declaration
public int Index { get; set; }
Property Value
System.Int32
|
Locked
Specifies if the column is locked.
Declaration
public bool Locked { get; set; }
Property Value
System.Boolean
|
Visible
The flag that controls if the column is visible.
Declaration
public Nullable<bool> Visible { get; set; }
Property Value
System.Nullable<System.Boolean>
|
Width
The width of the column.
Declaration
public string Width { get; set; }
Property Value
System.String
|