AutoCorrect Object
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