Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Deletes the text from a text frame and all the associated properties of the text, including font attributes.
Syntax
expression.DeleteText
expression An expression that returns a TextFrame2 object.
Return value
Nothing
Example
This example shows how to delete the text from shape one on slide one of the active presentation, if that shape contains text.
Public Sub DeleteText_Example()
Dim pptSlide As Slide
Set pptSlide = ActivePresentation.Slides(1)
pptSlide.Shapes(1).TextFrame2.DeleteText
End Sub
See also
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.