Class TileLayoutItem
The class for TileLayout items.
Inheritance
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class TileLayoutItem : ComponentBase, IDisposable
Constructors
TileLayoutItem()
Declaration
public TileLayoutItem()
Properties
Class
The CSS class that will be rendered on the tile's wrapping element.
Declaration
public string Class { get; set; }
Property Value
System.String
|
ColSpan
The number of columns a tile will span over.
Declaration
public int ColSpan { get; set; }
Property Value
System.Int32
|
Content
The content of the item. Can take components.
Declaration
public RenderFragment Content { get; set; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment
|
HeaderTemplate
The content that will be rendered in the item header. Can take components.
Declaration
public RenderFragment HeaderTemplate { get; set; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment
|
HeaderText
Defines the tile header content as plain text. For rich text, use a nested HeaderTemplate tag.
Declaration
public string HeaderText { get; set; }
Property Value
System.String
|
Id
Specifies the Id of the TileLayoutItem. The identifier is used in OnReorder event and OnResize event.
Declaration
public string Id { get; set; }
Property Value
System.String
|
RowSpan
The number of rows a tile will span over.
Declaration
public int RowSpan { get; set; }
Property Value
System.Int32
|
Visible
If value is set to "false" the item is invisible.
The default value is true
.
Declaration
public bool Visible { get; set; }
Property Value
System.Boolean
|
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder
__builder
|
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
|