Class
GridColumnStateBase

Describes a column in the State.

Definition

Namespace:Telerik.Blazor.Components.Common.Grid.State

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class GridColumnStateBase

Inheritance: objectGridColumnStateBase

Derived Classes: GridColumnStateTreeListColumnState

Constructors

GridColumnStateBase()

Declaration

cs-api-definition
public GridColumnStateBase()

GridColumnStateBase(int, string, bool?)

Declaration

cs-api-definition
public GridColumnStateBase(int index, string width, bool? visible)

Parameters

index

int

width

string

visible

bool?

Properties

Field

Gets the Field of the column, if it has one set.

Declaration

cs-api-definition
public string Field { get; }

Property Value

string

Id

Gets the Id of the column, if it has one set.

Declaration

cs-api-definition
public string Id { get; }

Property Value

string

Index

The position of the column in the column list.

Declaration

cs-api-definition
public int Index { get; set; }

Property Value

int

Locked

Specifies if the column is locked.

Declaration

cs-api-definition
public bool Locked { get; set; }

Property Value

bool

Visible

The flag that controls if the column is visible.

Declaration

cs-api-definition
public bool? Visible { get; set; }

Property Value

bool?

Width

The width of the column.

Declaration

cs-api-definition
public string Width { get; set; }

Property Value

string