Node Property (Error Object)

Microsoft Office InfoPath

A read-only property that returns a reference to the XML Document Object Model (DOM) node of a form's underlying XML document that is associated with an Error object.

expression.Node

expression    Required. An expression that returns a reference to the Error object.

Security Level

2: 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.

Remarks

Using the Node property, you can access all of the properties and methods that the XML DOM node object provides.

Example

In the following example, the Node property of the Error object is used to display the XML node of an error in a message box:

var objError;

objError = XDocument.Errors(0);
XDocument.UI.Alert("Error name: " + objError.Node.xml);