GefScreen.SaveCopyAs (method)

Saves changes to the screen in the file with the specified options.
Syntax: object.SaveCopyAs SaveFile, Format, Encoding
Parameters:
SaveFile As String -
Encoding As GefCTXEncodingEnum -
Description: CimEdit only. Ignored in CimView.

Example:

Sub GefScreen_SaveCopyAs()
    
    Dim oCimScr As GefScreen
    Set oCimScr = CimGetScreen
    oCimScr.SaveCopyAs "New.ctx", SaveFile_Text, CTXE_UTF8
    
End Sub