Sdílet prostřednictvím


TextEffectFormat Object (PowerPoint)

Contains properties and methods that apply to WordArt objects.

Example

Use the TextEffect property to return a TextEffectFormat object. The following example sets the font name and formatting for shape one on myDocument. For this example to work, shape one must be a WordArt object.

Set myDocument = ActivePresentation.Slides(1)

With myDocument.Shapes(1).TextEffect

    .FontName = "Courier New"

    .FontBold = True

    .FontItalic = True

End With

See Also

Concepts

TextEffectFormat Object Members

PowerPoint Object Model Reference