AutoCorrect Object (PowerPoint)
Represents the AutoCorrect functionality in Microsoft PowerPoint.
Example
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