FormErrorCollection.DeleteAll method

Deletes all of the FormError objects contained in the FormErrorCollection object associated with the current form.

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

Syntax

'Declaration
Public MustOverride Sub DeleteAll
'Usage
Dim instance As FormErrorCollection

instance.DeleteAll()
public abstract void DeleteAll()

Remarks

To delete a specific FormError object from the FormErrorCollection collection, use the Delete method.

Note

Unlike the Delete method that will only delete errors that were created using the Add method (errors of type FormErrorType.UserDefined), the DeleteAll method will delete all errors in the collection, regardless of how they were created (errors of all FormErrorType).

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.

Examples

In the following example, the DeleteAll method is used to delete all errors from the FormErrorCollection object associated with the current form.

this.Errors.DeleteAll();
Me.Errors.DeleteAll()

See also

Reference

FormErrorCollection class

FormErrorCollection members

Microsoft.Office.InfoPath namespace