Remarks

Use Application.LanguageSettings.LanguageID(), where is a constant used to return locale identifier (LCID) information to the specified application.

Example
The following example returns the install language, user interface language, and Help language LCIDs in a message box.

Visual Basic for Applications
MsgBox "The following locale IDs are registered " & _ "for this application: Install Language - " & _ Application.LanguageSettings.LanguageID(msoLanguageIDInstall) & _ " User Interface Language - " & _ Application.LanguageSettings.LanguageID(msoLanguageIDUI) & _ " Help Language - " & _ Application.LanguageSettings.LanguageID(msoLanguageIDHelp)

Use Application.LanguageSettings.LanguagePreferredForEditing to determine which LCIDs are registered as preferred editing languages for the application, as in the following example.

Visual Basic for Applications
If Application.LanguageSettings. _ LanguagePreferredForEditing(msoLanguageIDEnglishUS) Then MsgBox "U.S. English is one of the chosen editing languagess." End If
Language Settings Object ofv

See also:

MsoAppLanguageID