GefScreen.TitleVisible (property)

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

Example:

Sub GefScreen_TitleVisible()
    
    Dim oCimScr As GefScreen
    Set oCimScr = CimGetScreen
    oCimScr.TitleVisible = False
    
End Sub