GefScreen.ToolbarsVisible (property)

Gets and sets if the tool bar is visible.
Syntax: Boolean = object.ToolbarsVisible
object.ToolbarsVisible = Boolean
Description: The ToolbarsVisible property gets and sets if the tool bar is visible.

Example:

Sub GefScreen_ToolbarsVisible()
    
    Dim oCimScr As GefScreen
    Set oCimScr = CimGetScreen
    oCimScr.ToolbarsVisible = False
    
End Sub