GridLayoutItem
Class
A component that lets you place content in a Telerik.Blazor.Components.GridLayout cell with optional row/column positioning and spanning.
Supports Row/Column to set start positions, RowSpan/ColumnSpan to span multiple tracks, custom Class, and ChildContent for the item body.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
C#
public class GridLayoutItem : ComponentBase, IComponent, IHandleEvent, IHandleAfterRender
Inheritance: objectComponentBaseGridLayoutItem
Implements:
Inherited Members
Constructors
C#
public GridLayoutItem()
Methods
C#
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Overrides:
Properties
Defines the content of the grid item.
C#
[Parameter]
public RenderFragment ChildContent { get; set; }
Defines the class of the grid layout item.
C#
[Parameter]
public string Class { get; set; }
Defines the column number position of the item in the grid.
C#
[Parameter]
public int? Column { get; set; }
Defines the column index of the grid.
C#
[Parameter]
public int? ColumnSpan { get; set; }
Defines the row number position of the item in the grid.
C#
[Parameter]
public int? Row { get; set; }