LanguageSettings.LanguageID property (Office)

Gets an MsoAppLanguageID constant representing the locale identifier (LCID) for the install language, the user interface language, or the Help language. Read-only.

Syntax

expression.LanguageID(Id)

expression A variable that represents a LanguageSettings object.

Parameters

Name Required/Optional Data type Description
Id Required MsoAppLanguageID Returns one of the MsoAppLanguageID enumerations.

Example

This Microsoft Excel example checks the LanguageID property settings for the user interface and execution mode to verify that they are set to the same LCID. The example returns an error if there is a discrepancy.

If Application.LanguageSettings.LanguageID(msoLanguageIDExeMode) _ 
 > Application.LanguageSettings.LanguageID(msoLanguageIDUI) _ 
 Then MsgBox "The user interface language and execution " & _ 
 "mode are different."

See also

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.