ASPxGridSettings.ShowStatusBar Property
Specifies the visibility of the Status Bar.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
Declaration
[DefaultValue(GridViewStatusBarMode.Auto)]
public GridViewStatusBarMode ShowStatusBar { get; set; }
Property Value
Type | Default | Description |
---|---|---|
GridViewStatusBarMode | Auto | A GridViewStatusBarMode enumeration value. |
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