AutoCorrect Object

Application
AutoCorrect

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

Properties | DisplayAutoCorrectOptions Property | DisplayAutoLayoutOptions Property

Parent Objects | Application Object

Child Objects