CIMLangMap.SaveCopyAs (method)

Saves the contents of the object in a file with the given name.
Syntax: object.SaveCopyAs FileName
Parameters:
FileName As String -
Description: Saves the contents of the object in a file with the given name. The FileName property is not modified. This method does not support CIMPLICITY PE logicals so they must be translated before calling this method.

Example:

Sub SaveCopyAs_Example()
    
    Dim oLangMap As CIMLangMapper.CIMLangMap
    
    Set oLangMap = CreateObject("CIMLangMapper.CIMLangMap")
    oLangMap.Load "c:\trans.clm"
    oLangMap.SaveCopyAs "c:\trans2.clm"
End Sub
See Also: FileName