CIMLangMap.CurrentLocaleID (read-only property)

Gets the LocaleID of the CurrentLanguage
Syntax: long = object.CurrentLocaleID
Description: Gets the LocaleID property of the CIMLanguage set by the property CurrentLanguage.

Example:

Sub CurrentLocaleID_Example()
    
    Dim oLangMap As CIMLangMapper.CIMLangMap
    
    Set oLangMap = CreateObject("CIMLangMapper.CIMLangMap")
    oLangMap.Load "c:\trans.clm"
    
    oLangMap.CurrentLanguage ="JPN"
    MsgBox "The LocaleID is: " & oLangMap.CurrentLocaleID
    
End Sub
See Also: CurrentLanguage , CIMLanguage.LocaleID