ASPxGridSettings.ShowStatusBar Property
In This Article
Specifies the visibility of the Status Bar.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
[DefaultValue(GridViewStatusBarMode.Auto)]
public GridViewStatusBarMode ShowStatusBar { get; set; }
#Property Value
Type | Default | Description |
---|---|---|
Grid |
Auto | A Grid |
Available values:
Name | Description |
---|---|
Auto | For the status bar: an element is visible if the |
Hidden | An element is hidden. |
Visible | An element is visible. |
#Remarks
Use the ShowStatusBar
property to specify the visibility of the grid’s Status Bar.
<dx:ASPxGridView ID="Grid" runat="server" ...>
<!-- ... -->
<Settings ShowStatusBar="Hidden" />
</dx:ASPxGridView>
See Also