GefScreen.Show (method)

Sets the display status of the screen.
Syntax: object.Show CmdShow
Parameters:
CmdShow As GefShowScreenEnum -
Description: The Show method set the display status of the screen

Example:

Sub GefScreen_Show()
    
    Dim oCimScr As GefScreen
    Set oCimScr = CimGetScreen
    oCimScr.Show gefSS_Minimize
    
End Sub