CIMLanguage (object)

ICIMLanguage Interface
Description: This object represents a language definition; it has a name and locale ID.

Example:

Sub Language_Example()
    
    Dim oLangMap As CIMLangMapper.CIMLangMap
    Dim oLangs As CIMLangMapper.CIMLanguages
    Dim oLang As CIMLangMapper.CIMLanguage
    
    Set oLangMap = CreateObject("CIMLangMapper.CIMLangMap")
    
    Set oLangs = oLangMap.Languages
    Set oLang = oLangs.AddLanguage("JPN", 1041)
    MsgBox oLang.Name
    MsgBox oLang.LocaleID
    
End Sub
Properties: LangMap , LocaleID , Name , Parent
Methods: