C++
virtual BOOL RemoveAllPanes( BOOL bUpdate = TRUE ) = 0;
Description
This function removes all panes, including hidden panes, from the status bar. It returns true on success or if there are no panes to remove, and returns false if the function could not be executed.
Each pane receives an AcPane::OnDelete() callback when the pane is removed.
Note
If this function is called with bUpdate set to false, the panes will remain in the status bar pane array count until the next call to AcStatusBar::Update().
Parameters
Parameters | Description |
---|---|
bUpdate | Input Boolean: true to remove the panes immediately and update the appearance of the status bar; false to display the panes in the status bar until the next call to Update() |