GefScreen.Name (read-only property)

Gets and sets the name of the screen.
Syntax: String = object.Name
Description: The name of the GefScreen object is the filename of the screen, not including the path.

Example:

Sub GefScreen_Name()
    
    Dim oCimScr As GefScreen
    Set oCimScr = CimGetScreen
    
    MsgBox "The name of the screen is " & """" & oCimScr.Name & """"
    
End Sub