TextEffectFormat.PresetTextEffect Property (Word)

Returns or sets the style of the specified WordArt. The values for this property correspond to the formats in the WordArt Gallery dialog box (Insert menu), numbered from left to right, top to bottom. Read/write MsoPresetTextEffect.

Syntax

expression .PresetTextEffect

expression Required. A variable that represents a TextEffectFormat object.

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 = ActiveDocument 
For Each s In myDocument.Shapes 
 If s.Type = msoTextEffect Then 
 s.TextEffect.PresetTextEffect = msoTextEffect1 
 End If 
Next

See Also

Concepts

TextEffectFormat Object Members

TextEffectFormat Object