Skip to main content
A newer version of this page is available. .

DxGridLayoutItem.Visible Property

Specifies whether the grid layout’s item is visible.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v20.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 grid layout’s item, set Visible to false.

<DxGridLayout>
    <Items>
        <DxGridLayoutItem Row="0" Column="0" Visible="false">
            <Template>
                <div>
                    Content
                </div>
            </Template>
        </DxGridLayoutItem>
        ...
    </Items>
</DxGridLayout>            
See Also