ProofreadingErrors Interface 

A collection of spelling and grammatical errors for the specified document or range.

Namespace: Microsoft.Office.Interop.Word
Assembly: Microsoft.Office.Interop.Word (in microsoft.office.interop.word.dll)

Usage

Public Class roofreadingErrorsImplementation
    Implements ProofreadingErrors
End Class
Dim roofreadingErrorsImplementation1 As New roofreadingErrorsImplementation()

Syntax

Public Interface ProofreadingErrors
    Inherits IEnumerable
public interface ProofreadingErrors : IEnumerable
public interface class ProofreadingErrors : public IEnumerable
public interface ProofreadingErrors implements IEnumerable
public interface ProofreadingErrors implements IEnumerable

Remarks

There is no ProofreadingError object; instead, each item in the ProofreadingErrors collection is a Range object that represents one spelling or grammatical error.

Use the SpellingErrors or GrammaticalErrors property of a Document or Range object to return the ProofreadingErrors collection.

Use SpellingErrors(index), where index is the index number, to return a single spelling error (represented by a Range object).

Use GrammarErrors(index), where index is the index number, to return a single grammatical error (represented by a Range object).

The Count property for this collection in a document returns the number of items in the main story only. To count items in other stories use the collection with the Range object. If all the words in the document or range are spelled correctly and are grammatically correct, the Count property for the ProofreadingErrors object returns 0 (zero) and the SpellingChecked and GrammarChecked properties of the Document or Range object return True.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, and Windows 2000

Target Platforms

See Also

Reference

Microsoft.Office.Interop.Word Namespace

Other Resources

ProofreadingErrors Members