Application.LanguageSettings Property
Gets a reference to the Microsoft.Office.Core.LanguageSettings object.
Namespace: Microsoft.Office.InfoPath
Assembly: Microsoft.Office.InfoPath (in Microsoft.Office.InfoPath.dll)
Syntax
'Declaration
Public MustOverride ReadOnly Property LanguageSettings As Object
Get
'Usage
Dim instance As Application
Dim value As Object
value = instance.LanguageSettings
public abstract Object LanguageSettings { get; }
Property Value
Type: System.Object
A reference to the Microsoft.Office.Core.LanguageSettings object.
Exceptions
Exception | Condition |
---|---|
SecurityException | The form template is not configured for Full Trust using the Security and Trust category of the Form Options dialog box. |
Remarks
After you establish a reference to the object returned by the LanguageSettings property, you can access all the properties and methods of the LanaguageSettings class.
Important
For the LanguageSettings property to work, you must establish a reference to the Microsoft Office 14.0 Object Library (from the COM tab of the Add Reference dialog box in Microsoft Visual Studio Tools for Applications). This will establish a reference to the Microsoft.Office.Core namespace, which contains the LanguageSettings class. Additionally, the form must be running as Full Trust.
This member can be accessed only by forms opened from a form template that has been configured to run with full trust using the Security and Trust category of the Form Options dialog box. This member requires full trust for the immediate caller and cannot be used by partially trusted code. For more information, see "Using Libraries from Partially Trusted Code" on MSDN.
This type or member can be accessed only from code running in forms opened in Microsoft InfoPath Filler.
Examples
The following example uses the get_LanguageID method (or the LanguageID property) of the LanguageSettings class to return the LCID value (a four-digit number) for the language that is currently being used for the Office user interface.
This example requires a using or Imports directive for the Microsoft.Office.Core namespace in the declarations section of the form code module.
LanguageSettings langSettings =
(LanguageSettings)this.Application.LanguageSettings;
int lcid =
langSettings.get_LanguageID (MsoAppLanguageID.msoLanguageIDUI);
Dim langSettings As LanguageSettings =
DirectCast(Me.Application.LanguageSettings, LanguageSettings)
Dim lcid As Integer =
langSettings.LanguageID (MsoAppLanguageID.msoLanguageIDUI)