ProofreadingErrors Interface

Definition

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

public interface class ProofreadingErrors : System::Collections::IEnumerable
[System.Runtime.InteropServices.Guid("000209BB-0000-0000-C000-000000000046")]
public interface ProofreadingErrors : System.Collections.IEnumerable
type ProofreadingErrors = interface
    interface IEnumerable
Public Interface ProofreadingErrors
Implements IEnumerable
Attributes
Implements

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.

Properties

Application

Returns a Application object that represents the Microsoft Word application.

Count

Returns the number of items in the specified collection.

Creator

Returns a 32-bit integer that indicates the application in which the specified object was created.

Item[Int32]

Returns an individual object in a collection.

Parent

Returns an object that represents the parent object of the specified object.

Type

Returns the type of proofreading error.

Methods

GetEnumerator()

Applies to