PresetTextEffect Property
Applies To
TextEffectFormat object.
Description
Returns or sets the style of the specified WordArt. The values for this property correspond to the formats in the WordArt Gallery dialog box (numbered from left to right, top to bottom). Read/write Long.
Can be one of the following MsoPresetTextEffect constants:
Remarks
Setting the PresetTextEffect property automatically sets many other formatting properties of the specified shape.
Example
This example sets the style for all WordArt on myDocument to the first style listed in the WordArt Gallery dialog box.
Set myDocument = Worksheets(1)
For Each s In myDocument.Shapes
If s.Type = msoTextEffect Then
s.TextEffect.PresetTextEffect = msoTextEffect1
End If
Next