XmlForm.XmlLang Property (Microsoft.Office.InfoPath)

Gets 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
'Usage
Dim instance As XmlForm
Dim value As String

value = instance.XmlLang

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

Property Value

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 Office InfoPath 2007 or in a Web browser.

Example

In the following 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