GefScreen.SaveAs (method)

Saves changes to the screen in the file specified.
Syntax: object.SaveAs SaveFile
Parameters:
SaveFile As String -
Description: CimEdit only. Ignored in CimView.

Example:

Sub GefScreen_SaveAs()
    
    Dim oCimScr As GefScreen
    Set oCimScr = CimGetScreen
    oCimScr.SaveAs "New.Cim"
    
End Sub