DxGridLayoutItem.Visible Property
In This Article
Specifies whether the grid layout’s item is visible.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
#Declaration
C#
[DefaultValue(true)]
[Parameter]
public bool Visible { get; set; }
#Property Value
Type | Default | Description |
---|---|---|
Boolean | true |
|
#Remarks
To hide the grid layout’s item, set Visible
to false
.
Razor
<DxGridLayout>
<Items>
<DxGridLayoutItem Row="0" Column="0" Visible="false">
<Template>
<div>
Content
</div>
</Template>
</DxGridLayoutItem>
...
</Items>
</DxGridLayout>
See Also