This topic has not yet been rated - Rate this topic

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)
public abstract string XmlLang { get; set; }

Property Value

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

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.

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)
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.