Skip to main content

DxStackLayoutItem.Visible Property

Specifies whether the stack layout’s item is visible.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[DefaultValue(true)]
[Parameter]
public bool Visible { get; set; }

Property Value

Type Default Description
Boolean true

true if the item is visible; otherwise, false.

Remarks

To hide the stack layout’s item, set Visible to false.

<DxStackLayout >
    <Items>
        <DxStackLayoutItem Visible="false">
            <Template>
                <div>
                    Item 1
                </div>
            </Template>
        </DxStackLayoutItem>
        ...
    </Items>
</DxStackLayout >      
See Also