ClassColumnBase
Definition
Namespace:Telerik.Blazor.Components.Common
Assembly:Telerik.Blazor.dll
Syntax:
public abstract class ColumnBase : ComponentBase, IComponent, IHandleEvent, IHandleAfterRender, IColumn, IDisposable
Inheritance: objectComponentBaseColumnBase
Derived Classes:
Implements:
Inherited Members
Constructors
ColumnBase()
Declaration
protected ColumnBase()
Properties
HeaderClass
The CSS class that will be rendered on the column header cell.
Declaration
[Parameter]
public virtual string HeaderClass { get; set; }
Property Value
Implements
Id
Specifies the unique identifier of the column.
Declaration
[Parameter]
public string Id { get; set; }
Property Value
Implements
Locked
Specifies whether the column is locked.
Declaration
[Parameter]
public bool Locked { get; set; }
Property Value
Implements
MaxResizableWidth
The maximum resizable width of the column.
Declaration
[Parameter]
public decimal MaxResizableWidth { get; set; }
Property Value
Implements
MinResizableWidth
The minimum resizable width of the column.
Declaration
[Parameter]
public decimal MinResizableWidth { get; set; }
Property Value
Implements
ParentColumn
Declaration
[CascadingParameter]
public IColumn ParentColumn { get; set; }
Property Value
Reorderable
Specifies whether the column can be reordered.
Declaration
[Parameter]
public bool Reorderable { get; set; }
Property Value
Implements
Resizable
Specifies whether the column can be resized.
Declaration
[Parameter]
public bool Resizable { get; set; }
Property Value
Implements
Title
The string title rendered in the column header.
Declaration
[Parameter]
public virtual string Title { get; set; }
Property Value
Implements
Methods
Dispose()
Declaration
public void Dispose()
Implements
OnAfterRender(bool)
Declaration
protected override void OnAfterRender(bool firstRender)
Parameters
firstRender
Overrides
OnInitialized()
Declaration
protected override void OnInitialized()
Overrides
SetParametersAsync(ParameterView)
Declaration
public override Task SetParametersAsync(ParameterView parameters)
Parameters
parameters
Returns
Overrides