_XDocument4.Errors property

Gets a reference to the ErrorsCollection that is associated with a Microsoft InfoPath form.

Namespace:  Microsoft.Office.Interop.InfoPath
Assembly:  Microsoft.Office.Interop.InfoPath (in Microsoft.Office.Interop.InfoPath.dll)

Syntax

'Declaration
ReadOnly Property Errors As ErrorsCollection
    Get
'Usage
Dim instance As _XDocument4
Dim value As ErrorsCollection

value = instance.Errors
ErrorsCollection Errors { get; }

Property value

Type: Microsoft.Office.Interop.InfoPath.ErrorsCollection
Returns ErrorsCollection.

Implements

_XDocument3.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.

Examples

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:

int errors;

errors = thisXDocument.Errors.Count;
thisXDocument.UI.Alert("Total number of errors: " + errors);

See also

Reference

_XDocument4 interface

_XDocument4 members

Errors overload

Microsoft.Office.Interop.InfoPath namespace