ShowStatusBar property
Returns or sets whether the status bar is shown at runtime. Read/write. Boolean.
Syntax
DataGrid1
.ShowStatusBar
[= state
]where
DataGrid1
- is the name of a data grid object or an expression that evaluates to a data grid object.state
- is a parameter of the type Boolean that can be set to one of the following:- True: Shows the status bar.
- False: Does not show the status bar.
Example
Private Sub ShowDataGridStatusBar() DataGrid1.ShowStatusBar = False End Sub
Provide Feedback