편집

다음을 통해 공유


_XDocument3.Errors Property

Definition

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

public:
 property Microsoft::Office::Interop::InfoPath::ErrorsCollection ^ Errors { Microsoft::Office::Interop::InfoPath::ErrorsCollection ^ get(); };
public Microsoft.Office.Interop.InfoPath.ErrorsCollection Errors { get; }
member this.Errors : Microsoft.Office.Interop.InfoPath.ErrorsCollection
Public ReadOnly Property Errors As ErrorsCollection

Property Value

A reference to the ErrorsCollection that is associated with a form.

Implements

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.<span class="label">Errors</span>.Count;
thisXDocument.UI.Alert("Total number of errors: " + errors);

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.<span class="label">Errors</span>.Count;
thisXDocument.UI.Alert("Total number of errors: " + 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.

Applies to