AutoCorrect Object

PowerPoint Developer Reference

Represents the AutoCorrect functionality in Microsoft Office PowerPoint.

Example

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

Visual Basic for Applications
  Sub HideAutoCorrectOpButton()
    With Application.AutoCorrect
        .DisplayAutoCorrectOptions = msoFalse
        .DisplayAutoLayoutOptions = msoFalse
    End With
End Sub

See Also