GefScreen.Saved (read-only property)

Gets whether the screen has been saved since the last change was made.
Syntax: Boolean = object.Saved
Description: This property is only meaningful for screens in CimEdit. Screens in CimView will always return True.

Example:

Sub GefScreen_Saved()
    
    Dim oCimScr As GefScreen
    Set oCimScr = CimGetScreen
    
    If oCimScr.Saved = True Then
        MsgBox "The screen is saved"
    Else
        MsgBox "The screen needs to be saved in order to keep the changes"
    End If
    
End Sub