Skip to content

Latest commit

 

History

History
51 lines (31 loc) · 1.08 KB

Word.TextEffectFormat.PresetShape.md

File metadata and controls

51 lines (31 loc) · 1.08 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
TextEffectFormat.PresetShape property (Word)
vbawd10.chm164561003
vbawd10.chm164561003
Word.TextEffectFormat.PresetShape
4d183208-7ea2-7179-4c6c-f710c16dd5fb
06/08/2017
medium

TextEffectFormat.PresetShape property (Word)

Returns or sets the shape of the specified WordArt. Read/write MsoPresetTextEffectShape.

Syntax

expression. PresetShape

expression Required. A variable that represents a 'TextEffectFormat' object.

Remarks

Setting the PresetTextEffect property automatically sets the PresetShape property.

Example

This example sets the shape of all WordArt on myDocument to a chevron whose center points down.

Set myDocument = ActiveDocument 
For Each s In myDocument.Shapes 
 If s.Type = msoTextEffect Then 
 s.TextEffect.PresetShape = msoTextEffectShapeChevronDown 
 End If 
Next

See also

TextEffectFormat Object

[!includeSupport and feedback]