GefScreen.RuntimeOnly (read-only property)

Determines if the screen is a runtime-only screen.
Syntax: Boolean = object.RuntimeOnly
Description: A runtime-only screen cannot be edited with CimEdit and cannot be saved in CimEdit. A runtime-only file contains only compiled screen data. It can be opened in CimEdit, the CIMPLICITY Object Explorer, and CimView. From CimEdit and the CIMPLICITY Object Explorer, links to the named objects can be made in other screens.

Example:

Sub GefScreen_RunTimeOnly()
    
    Dim oCimScr As GefScreen
    Set oCimScr = CimGetScreen
    If oCimScr.RunTimeOnly Then
        MsgBox "The screen is a run time only screen"
    Else
        MsgBox "The screen is not a run time only screen"
    End If
    
End Sub
See Also: GefScreen.CreateRuntimeOnlyScreen , GefObject.Protected