XmlForm.XmlLang property

Gets or sets the value of the xml:lang attribute in the underlying XML document of the form.

Namespace:  Microsoft.Office.InfoPath
Assembly:  Microsoft.Office.InfoPath (in Microsoft.Office.InfoPath.dll)

Syntax

'Declaration
Public MustOverride Property XmlLang As String
    Get
    Set
'Usage
Dim instance As XmlForm
Dim value As String

value = instance.XmlLang

instance.XmlLang = value
public abstract string XmlLang { get; set; }

Property value

Type: System.String
The xml:lang attribute of the underlying XML document of the form.

Remarks

The value of the xml:lang attribute specifies the language used in the content of the form.

This member can be accessed only by forms running in the same domain as the currently open form, or by forms that have been granted cross-domain permissions.

This type or member can be accessed from code running in forms opened in Microsoft InfoPath Filler or in a Web browser.

Examples

In the following code example, the XmlLang property of the XmlForm class is used to display a form's current language setting in a message box.

[C#]

MessageBox.Show(this.XmlLang);
MessageBox.Show(Me.XmlLang)

See also

Reference

XmlForm class

XmlForm members

Microsoft.Office.InfoPath namespace