AutoCorrect object (PowerPoint)

Represents the AutoCorrect functionality in Microsoft PowerPoint.

Example

Use the AutoCorrectproperty 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

See also

PowerPoint Object Model Reference

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.