Skip to content

Latest commit

 

History

History
52 lines (30 loc) · 1.33 KB

Word.Application.SmartArtLayouts.md

File metadata and controls

52 lines (30 loc) · 1.33 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.SmartArtLayouts property (Word)
vbawd10.chm158335457
vbawd10.chm158335457
Word.Application.SmartArtLayouts
dcbaf620-0865-8f2f-ef97-456edd0d70e3
06/08/2017
medium

Application.SmartArtLayouts property (Word)

Returns a SmartArtLayouts object that represents the set of SmartArt layouts that are currently loaded in the application. Read-only.

Syntax

expression. SmartArtLayouts

expression An expression that returns a 'Application' object.

Remarks

The set of layouts represented by the SmartArtLayouts property correspond to the available layouts in the Layouts group on the Design tab on the SmartArt Tools contextual tab in Word.

Example

The following code example adds a SmartArt graphic to the active document and then sets the SmartArt graphic layout to "Grouped List".

Dim myShape As Shape 
Dim mySmartArt As SmartArt 
 
Set myShape = ActiveDocument.Shapes.AddSmartArt(Application.SmartArtLayouts(1), 50, 50, 200, 200) 
Set mySmartArt = myShape.SmartArt 
 
mySmartArt.Layout = Application.SmartArtLayouts(15)

See also

Application Object

[!includeSupport and feedback]