Interface IColumn
Namespace: Telerik.Blazor.Common.Columns
Assembly: Telerik.Blazor.dll
Syntax
public interface IColumn
Properties
HeaderClass
The CSS class that will be rendered on the column header cell.
Declaration
string HeaderClass { get; set; }
Property Value
System.String
|
Id
Specifies the unique identifier of the column.
Declaration
string Id { get; set; }
Property Value
System.String
|
Locked
Specifies if the column is locked.
Declaration
bool Locked { get; set; }
Property Value
System.Boolean
|
MaxResizableWidth
The maximum resizable width of the column.
Declaration
Decimal MaxResizableWidth { get; set; }
Property Value
System.Decimal
|
MinResizableWidth
The minimum resizable width of the column.
Declaration
Decimal MinResizableWidth { get; set; }
Property Value
System.Decimal
|
Reorderable
Specifies if the column is reorderable.
Declaration
bool Reorderable { get; set; }
Property Value
System.Boolean
|
Resizable
Specifies if the column is resizable.
Declaration
bool Resizable { get; set; }
Property Value
System.Boolean
|
Title
The string title rendered in the column header.
Declaration
string Title { get; set; }
Property Value
System.String
|
Visible
Specifies if the column is visible.
Declaration
Nullable<bool> Visible { get; set; }
Property Value
System.Nullable<System.Boolean>
|
Width
The width of the column.
Declaration
string Width { get; set; }
Property Value
System.String
|