GefScreen.Path (read-only property)

Gets the path of the application or screen.
Syntax: String = object.Path
Description: For GefScreen it returns the same as FullName without Name.

Example:

Sub GefScreen_Path()
    
    Dim oCimScr As GefScreen
    Set oCimScr = CimGetScreen
    
    MsgBox "The screen is located in the " & """" & oCimScr.Path & """" & " directory"
    
End Sub