GefApplication (object)

Allows access to application level properties.
Description: There are two instances of this object available, one for CimEdit and one for CimView.

Outside of CimEdit and CimView, these objects can be accessed using CreateObject("CimEdit") and CreateObject("CimView").

Within CimEdit or CimView scripts, the Basic extensions CimEdit and CimView can be used to refer these objects.

Example:

Sub GeffApplication_Name()
    
    Dim oCimApp As GefApplication
    
    Set oCimApp = CimView()
    MsgBox "The application is currently " & oCimApp.Name
    Set oCimApp = CimEdit()
    MsgBox "The application is currently " & oCimApp.Name
    Set oCimApp = CreateObject("CimView")
    MsgBox "The application is currently " & oCimApp.Name
    Set oCimApp = CreateObject("CimEdit")
    MsgBox "The application is currently " & oCimApp.Name
    
End Sub
Properties: ActiveScreen , Application , Caption , DefaultFilePath , FullName , Language , MonitorCount , Name , Parent , Path , Screens , SessionID , TSSessionID
Methods: CancelScreenCachePointUpdates , CaptivePopup , ConvertToCTX , ConvertToRuntimeScript , DialogPopup , FlushScreenCache , GetMonitorRect , GetMonitorWorkingRect , GetProjectEnvironment , HealthCheck , Help , Open , OpenEx , Quit , SetProjectEnvironment