XmlForm.XmlLang Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the value of the xml:lang attribute in the underlying XML document of the form.
public:
abstract property System::String ^ XmlLang { System::String ^ get(); void set(System::String ^ value); };
public abstract string XmlLang { get; set; }
member this.XmlLang : string with get, set
Public MustOverride Property XmlLang As String
Property Value
The xml:lang attribute of the underlying XML document of the form.
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)
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.