Class ColumnBase
Inheritance
Namespace: Telerik.Blazor.Components.Common
Assembly: Telerik.Blazor.dll
Syntax
public abstract class ColumnBase : ComponentBase, IColumn, IDisposable
Constructors
ColumnBase()
Declaration
protected ColumnBase()
Properties
ColumnsCollection
Declaration
public List<IColumn> ColumnsCollection { get; set; }
Property Value
System.Collections.Generic.List<IColumn>
|
HeaderClass
The CSS class that will be rendered on the column header cell.
Declaration
public virtual string HeaderClass { get; set; }
Property Value
System.String
|
Implements
Id
Specifies the unique identifier of the column.
Declaration
public string Id { get; set; }
Property Value
System.String
|
Implements
Locked
Specifies whether the column is locked.
Declaration
public bool Locked { get; set; }
Property Value
System.Boolean
|
Implements
MaxResizableWidth
The maximum resizable width of the column.
Declaration
public Decimal MaxResizableWidth { get; set; }
Property Value
System.Decimal
|
Implements
MinResizableWidth
The minimum resizable width of the column.
Declaration
public Decimal MinResizableWidth { get; set; }
Property Value
System.Decimal
|
Implements
ParentColumn
Reorderable
Specifies whether the column can be reordered.
Declaration
public bool Reorderable { get; set; }
Property Value
System.Boolean
|
Implements
Resizable
Specifies whether the column can be resized.
Declaration
public bool Resizable { get; set; }
Property Value
System.Boolean
|
Implements
Title
The string title rendered in the column header.
Declaration
public virtual string Title { get; set; }
Property Value
System.String
|
Implements
Visible
Specifies whether the column is visible. If set to false, the column will be hidden from the grid.
Declaration
public Nullable<bool> Visible { get; set; }
Property Value
System.Nullable<System.Boolean>
|
Implements
Width
The width of the column.
Declaration
public virtual string Width { get; set; }
Property Value
System.String
|
Implements
Methods
Dispose()
Declaration
public void Dispose()
OnAfterRender(Boolean)
Declaration
protected override void OnAfterRender(bool firstRender)
Parameters
System.Boolean
firstRender
|
OnInitialized()
Declaration
protected override void OnInitialized()
OnParametersSetAsync()
Declaration
protected override Task OnParametersSetAsync()
Returns
System.Threading.Tasks.Task
|
SetParametersAsync(ParameterView)
Declaration
public override Task SetParametersAsync(ParameterView parameters)
Parameters
Microsoft.AspNetCore.Components.ParameterView
parameters
|
Returns
System.Threading.Tasks.Task
|