XDocument.Errors Property

InfoPath Developer Reference

A read-only property that returns a reference to the Errors collection that is associated with a Microsoft Office InfoPath 2007 form. Read-only

Version Information
 Version Added:  InfoPath 2003

Syntax

expression.Errors

expression   An expression that returns a XDocument object.

Return Value
Errors

Remarks

The Errors collection is associated with a form's underlying XML document so that when an error occurs, it occurs within the XML document. After you set a reference to the Errors collection, you can access all of its properties and methods for managing the errors within an InfoPath form.

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.

Example

In the following example, the Errors property of the XDocument object is used to return the count of the number or errors and then display that value in a message box:

JScript
  var intErrors;

intErrors = XDocument.errors.Count; XDocument.UI.Alert("Total number of errors: " + intErrors);

See Also