Class
TileLayoutItemState

Describes the user-changeable state of an individual TileLayout tile so you can store it and apply it to the component through its parent TileLayoutState object.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class TileLayoutItemState

Inheritance: objectTileLayoutItemState

Constructors

TileLayoutItemState()

Declaration

cs-api-definition
public TileLayoutItemState()

Properties

ColSpan

How many rows the tile is tall.

Declaration

cs-api-definition
public int ColSpan { get; set; }

Property Value

int

Id

The id of the tile.

Declaration

cs-api-definition
public string Id { get; }

Property Value

string

Order

The order of the tile in the user-defined layout. Items from the tile state collection are applied sequentially to the tiles in the component markup.

Declaration

cs-api-definition
public int Order { get; set; }

Property Value

int

RowSpan

How many columns the tile is wide.

Declaration

cs-api-definition
public int RowSpan { get; set; }

Property Value

int