AutoCorrectEntries Interface 

A collection of AutoCorrectEntry objects that represent all the AutoCorrect entries available to Microsoft Word. The AutoCorrectEntries collection includes all the entries in the AutoCorrect dialog box (Tools menu).

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

Usage

Public Class utoCorrectEntriesImplementation
    Implements AutoCorrectEntries
End Class
Dim utoCorrectEntriesImplementation1 As New utoCorrectEntriesImplementation()

Syntax

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

Remarks

Use the Entries property to return the AutoCorrectEntries collection.

Use the Add or the AddRichText method to add an AutoCorrect entry to the list of available entries.

Use Entries(index), where index is the AutoCorrect entry name or index number, to return a single AutoCorrectEntry object. You must exactly match the spelling (but not necessarily the capitalization) of the name, as it's shown under Replace in the AutoCorrect dialog box.

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

AutoCorrectEntries Members