Share via


AutoCorrect Object

AutoCorrect Object
This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

Application
Aa159645.parchild(en-us,office.10).gifAutoCorrect

Represents the AutoCorrect functionality in Microsoft PowerPoint.

Using the AutoCorrect object

Use the AutoCorrect property to return an AutoCorrect object. The following example disables displaying the AutoCorrect options buttons.

  Sub HideAutoCorrectOpButton()
    With Application.AutoCorrect
        .DisplayAutoCorrectOptions = msoFalse
        .DisplayAutoLayoutOptions = msoFalse
    End With
End Sub