Edit

Share via


XmlForm.Errors Property

Definition

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

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

Property Value

A FormErrorCollection that represents the collection of Microsoft.Office.infoPath.FormError objects for the current form.

Examples

In the following code example, the Errors property of the XmlForm class is used to return the count of the number of errors and then display that value in a message box.

int formErrors = this.Errors.Count;
MessageBox.Show("Total number of errors: " + formErrors);
Dim formErrors As Integer = Me.Errors.Count
MessageBox.Show("Total number of errors: " & formErrors)

Remarks

The FormErrorCollection collection is associated with a form's underlying XML document so that when an error occurs a FormError object that contains information about the error will be added to the collection. After you set a reference to the FormErrorCollection collection, you can access all of its properties and methods for managing the errors that occur within an InfoPath 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.

Applies to