CIMLanguages.Parent (read-only property)

Gets the CIMLangMap that is the parent of this object.
Syntax: Set object = object.Parent
Description: Gets the CIMLangMap that is the parent of this object.

Example:

Sub Parent_Example()
    
    Dim oLangMap As CIMLangMapper.CIMLangMap
    Dim oLangs As CIMLangMapper.CIMLanguages
    
    Set oLangMap = CreateObject("CIMLangMapper.CIMLangMap")
    
    Set oLangs = oLangMap.Languages
    Set oLangMap = oLangs.Parent
    
End Sub