Class TelerikStackLayout
The class for the Telerik StackLayout component.
Inherited Members
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class TelerikStackLayout : BaseComponent, IDisposable
Constructors
TelerikStackLayout()
Declaration
public TelerikStackLayout()
Properties
ChildContent
Defines the content of the StackLayout.
Declaration
public RenderFragment ChildContent { get; set; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment
|
Height
Defines the height of the stack container as a CSS value.
Declaration
public string Height { get; set; }
Property Value
System.String
|
HorizontalAlign
Defines the horizontal alignment of the items in the stack. The default value is Stretch. The possible options are Left, Right, Center and Stretch.
Declaration
public StackLayoutHorizontalAlign HorizontalAlign { get; set; }
Property Value
StackLayoutHorizontalAlign
|
Orientation
Defines the orientation of the items in the stack. Default value is Horizontal.
Declaration
public StackLayoutOrientation Orientation { get; set; }
Property Value
StackLayoutOrientation
|
Spacing
Defines the spacing between items in the stack. Accepts css unit value (ex: 10px).
Declaration
public string Spacing { get; set; }
Property Value
System.String
|
VerticalAlign
Defines the vertical alignment of the items in the stack. The default value is Stretch. The possible vertical align options are Top, Bottom, Center and Stretch.
Declaration
public StackLayoutVerticalAlign VerticalAlign { get; set; }
Property Value
StackLayoutVerticalAlign
|
Width
Defines the width of the stack container as a CSS value.
Declaration
public string Width { get; set; }
Property Value
System.String
|
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder
__builder
|