Table of Contents

Class Column

Namespace
Kentico.Xperience.Admin.Base
Assembly
Kentico.Xperience.Admin.Base.dll

Represents a table column.

public class Column
Inheritance
object
Column
Extension Methods

Fields

COLUMN_MAX_WIDTH_DEFAULT

Default maximal value for column width

public const int COLUMN_MAX_WIDTH_DEFAULT = 100

Field Value

int

COLUMN_MIN_WIDTH_DEFAULT

Default minimal value for column width

public const int COLUMN_MIN_WIDTH_DEFAULT = 8

Field Value

int

Properties

Caption

Gets or sets the column caption.

public string Caption { get; set; }

Property Value

string

ContentType

Name of the component to be rendered as the skeleton while waiting for the real data.

public ColumnContentType ContentType { get; set; }

Property Value

ColumnContentType

MaxWidth

Maximal width of the column in grid units.

public int MaxWidth { get; set; }

Property Value

int

MinWidth

Minimal width of the column in grid units.

public int MinWidth { get; set; }

Property Value

int

Name

Gets or sets the column name.

public string Name { get; set; }

Property Value

string

Searchable

Indicates whether the table rows are able to be filtered by values in this column.

public bool Searchable { get; set; }

Property Value

bool

Sortable

Indicates whether the table rows are sortable by values in this column.

public bool Sortable { get; set; }

Property Value

bool

Visible

Gets or sets the column visibility.

public bool Visible { get; set; }

Property Value

bool