TextEffectFormat Object [Excel 2003 VBA Language Reference]

Multiple objects
TextEffectFormat

Contains properties and methods that apply to WordArt objects.

Using the TextEffectFormat Object

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 = Worksheets(1)
With myDocument.Shapes(1).TextEffect
    .FontName = "Courier New"
    .FontBold = True
    .FontItalic = True
End With

Properties | Alignment Property | Application Property | Creator Property | FontBold Property | FontItalic Property | FontName Property | FontSize Property | KernedPairs Property | NormalizedHeight Property | Parent Property | PresetShape Property | PresetTextEffect Property | RotatedChars Property | Text Property | Tracking Property

Methods | ToggleVerticalText Method

Parent Objects | Shape Object | ShapeRange Collection

Child Objects