Application.ResetIgnoreAll method (Word)

Clears the list of words that were previously ignored during a spelling check.

Syntax

expression. ResetIgnoreAll

expression Required. A variable that represents an Application object.

Remarks

After you run this method, previously ignored words are checked along with all the other words. In order for the ResetIgnoreAll method to work, you must first set the SpellingChecked property to False.

Example

This example clears the list of words that were ignored during a previous spelling check and then begins a new spelling check on the active document.

Application.ResetIgnoreAll 
ActiveDocument.SpellingChecked = False 
ActiveDocument.CheckSpelling

See also

Application Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.