CIMLanguage.Name (property)

Gets the name of the language.
Syntax: String = object.Name
object.Name = String
Description: Gets and sets the name of the language.

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