DxGridLayoutItem.Visible Property
Specifies whether the grid layout’s item is visible.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
[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
.
<DxGridLayout>
<Items>
<DxGridLayoutItem Row="0" Column="0" Visible="false">
<Template>
<div>
Content
</div>
</Template>
</DxGridLayoutItem>
...
</Items>
</DxGridLayout>
See Also