TextEffectFormat Interface

Contains properties and methods that apply to WordArt objects.

Namespace:  Microsoft.Office.Interop.PowerPoint
Assembly:  Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)

Syntax

'Declaration
<GuidAttribute("91493482-5A91-11CF-8700-00AA0060263B")> _
Public Interface TextEffectFormat
'Usage
Dim instance As TextEffectFormat
[GuidAttribute("91493482-5A91-11CF-8700-00AA0060263B")]
public interface TextEffectFormat

Examples

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

Reference

TextEffectFormat Members

Microsoft.Office.Interop.PowerPoint Namespace