FormErrorCollection.DeleteAll Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Deletes all of the FormError objects contained in the FormErrorCollection object associated with the current form.
public:
abstract void DeleteAll();
public abstract void DeleteAll ();
abstract member DeleteAll : unit -> unit
Public MustOverride Sub DeleteAll ()
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()
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.