Class
TelerikGridLayout

The class for the Telerik GridLayout Component.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class TelerikGridLayout : BaseComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable

Inheritance: objectComponentBaseBaseComponentTelerikGridLayout

Implements: IComponentIDisposableIHandleAfterRenderIHandleEvent

Inherited Members BaseComponent.ShouldRender()BaseComponent.OnInitializedAsync()BaseComponent.OnAfterRenderAsync(bool)BaseComponent.Dispose()BaseComponent.InitLocalizer()BaseComponent.ThrowIfParameterIsNull(object, string)BaseComponent.HaveOptionsChanged(IDictionary<string, object>, IDictionary<string, object>)BaseComponent.GetClassString(params string[])BaseComponent.InvokeAsync<T>(string, params object[])BaseComponent.InvokeAsync<T>(string, CancellationToken, params object[])BaseComponent.InvokeVoidAsync(string, params object[])BaseComponent.InvokeComponentMethodAsync<T>(string, params object[])BaseComponent.InvokeComponentMethodAsync<T>(string, CancellationToken, params object[])BaseComponent.InvokeVoidComponentMethodAsync(string, params object[])BaseComponent.InvokeComponentVoidMethodAsync(string, object)BaseComponent.InvokeDisposeAsync()BaseComponent.StateHasChanged()BaseComponent.RootComponentBaseComponent.ClassComponentBase.OnInitialized()ComponentBase.OnParametersSet()ComponentBase.OnParametersSetAsync()ComponentBase.OnAfterRender(bool)ComponentBase.InvokeAsync(Action)ComponentBase.InvokeAsync(Func<Task>)ComponentBase.SetParametersAsync(ParameterView)

Constructors

TelerikGridLayout()

Declaration

cs-api-definition
public TelerikGridLayout()

Properties

ColumnSpacing

Defines the spacing between columns of the container.

Declaration

cs-api-definition
[Parameter]
public string ColumnSpacing { get; set; }

Property Value

string

GridLayoutColumns

Defines the grid layout column definitions.

Declaration

cs-api-definition
[Parameter]
public RenderFragment GridLayoutColumns { get; set; }

Property Value

RenderFragment

GridLayoutItems

Defines the grid layout items.

Declaration

cs-api-definition
[Parameter]
public RenderFragment GridLayoutItems { get; set; }

Property Value

RenderFragment

GridLayoutRows

Defines the grid layout row definitions.

Declaration

cs-api-definition
[Parameter]
public RenderFragment GridLayoutRows { get; set; }

Property Value

RenderFragment

HorizontalAlign

Defines the horizontal align of the items in the grid column. Default value is Stretch.

Declaration

cs-api-definition
[Parameter]
public GridLayoutHorizontalAlign HorizontalAlign { get; set; }

Property Value

GridLayoutHorizontalAlign

RowSpacing

Defines the spacing between rows of the container.

Declaration

cs-api-definition
[Parameter]
public string RowSpacing { get; set; }

Property Value

string

VerticalAlign

Defines the vertical align of the items in the grid column. Default value is Stretch.

Declaration

cs-api-definition
[Parameter]
public GridLayoutVerticalAlign VerticalAlign { get; set; }

Property Value

GridLayoutVerticalAlign

Width

Defines the width of the container.

Declaration

cs-api-definition
[Parameter]
public string Width { get; set; }

Property Value

string

Methods

BuildRenderTree(RenderTreeBuilder)

Declaration

cs-api-definition
protected override void BuildRenderTree(RenderTreeBuilder __builder)

Parameters

__builder

RenderTreeBuilder

Overrides ComponentBase.BuildRenderTree(RenderTreeBuilder)