Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The table in this post lists the layouts available in Word 2010 for SmartArt Graphics. You can insert a SmartArt Graphic that uses one of these layouts in the Word user interface (UI) by clicking SmartArt on the Insert tab, which opens the Choose a SmartArt Graphic dialog box. You can then choose a graphic from one of the category types listed in the left pane. A preview of the graphic that you select in the List pane appears in the right pane. Hover your mouse over a layout in the list pane to display the layout name.
You can apply these layouts programmatically by using the AddSmartArt method of the Shapes collection:
Shapes.AddSmartArt(Layout, [Left], [Top], [Width], [Height], [Anchor])
For the first parameter, which is the only required parameter, pass the index number of the layout in the SmartArtLayouts collection of built-in SmartArt graphics. However, to do so, you need to know how the index numbers of the layouts correspond to the names displayed when you hover over a layout in the dialog box. There’s no easy way to know the index number, without counting, which would be tedious.
I wrote a short macro to print out these layout index numbers in the VBE immediate window:
Public Sub GetSmartArtLayoutNames()
Dim WdSmartArtLayouts As SmartArtLayouts
Set WdSmartArtLayouts = Application.SmartArtLayouts
For i = 1 To WdSmartArtLayouts.Count
Debug.Print i; WdSmartArtLayouts(i).Name
Next i
End Sub
The macro results are listed in the following table.
1 |
Basic Block List |
2 |
Alternating Hexagons |
3 |
Picture Caption List |
4 |
Lined List |
5 |
Vertical Bullet List |
6 |
Vertical Box List |
7 |
Vertical Bracket List |
8 |
Varying Width List |
9 |
Tab List |
10 |
Horizontal Bullet List |
11 |
Square Accent List |
12 |
Picture Accent List |
13 |
Bending Picture Accent List |
14 |
Stacked List |
15 |
Increasing Circle Process |
16 |
Pie Process |
17 |
Detailed Process |
18 |
Grouped List |
19 |
Horizontal Picture List |
20 |
Continuous Picture List |
21 |
Picture Strips |
22 |
Vertical Picture List |
23 |
Alternating Picture Blocks |
24 |
Vertical Picture Accent List |
25 |
Titled Picture Accent List |
26 |
Vertical Block List |
27 |
Vertical Chevron List |
28 |
Vertical Accent List |
29 |
Vertical Arrow List |
30 |
Trapezoid List |
31 |
Descending Block List |
32 |
Table List |
33 |
Segmented Process |
34 |
Vertical Curved List |
35 |
Pyramid List |
36 |
Target List |
37 |
Hierarchy List |
38 |
Vertical Circle List |
39 |
Table Hierarchy |
40 |
Architecture Layout |
41 |
Basic Process |
42 |
Step Up Process |
43 |
Step Down Process |
44 |
Accent Process |
45 |
Picture Accent Process |
46 |
Alternating Flow |
47 |
Continuous Block Process |
48 |
Increasing Arrows Process |
49 |
Interconnected Block Process |
50 |
Continuous Arrow Process |
51 |
Converging Text |
52 |
Process Arrows |
53 |
Circle Accent Timeline |
54 |
Basic Timeline |
55 |
Circle Process |
56 |
Basic Chevron Process |
57 |
Chevron Accent Process |
58 |
Closed Chevron Process |
59 |
Chevron List |
60 |
Sub-Step Process |
61 |
Phased Process |
62 |
Random to Result Process |
63 |
Vertical Process |
64 |
Staggered Process |
65 |
Process List |
66 |
Circle Arrow Process |
67 |
Basic Bending Process |
68 |
Repeating Bending Process |
69 |
Vertical Bending Process |
70 |
Ascending Picture Accent Process |
71 |
Upward Arrow |
72 |
Descending Process |
73 |
Circular Bending Process |
74 |
Equation |
75 |
Vertical Equation |
76 |
Funnel |
77 |
Gear |
78 |
Arrow Ribbon |
79 |
Opposing Arrows |
80 |
Converging Arrows |
81 |
Diverging Arrows |
82 |
Basic Cycle |
83 |
Text Cycle |
84 |
Block Cycle |
85 |
Nondirectional Cycle |
86 |
Continuous Cycle |
87 |
Multidirectional Cycle |
88 |
Segmented Cycle |
89 |
Basic Pie |
90 |
Hexagon Radial |
91 |
Radial Cycle |
92 |
Basic Radial |
93 |
Diverging Radial |
94 |
Radial Venn |
95 |
Cycle Matrix |
96 |
Radial Cluster |
97 |
Organization Chart |
98 |
Picture Organization Chart |
99 |
Name and Title Organization Chart |
100 |
Half Circle Organization Chart |
101 |
Circle Picture Hierarchy |
102 |
Hierarchy |
103 |
Labeled Hierarchy |
104 |
Horizontal Organization Chart |
105 |
Horizontal Multi-Level Hierarchy |
106 |
Horizontal Hierarchy |
107 |
Horizontal Labeled Hierarchy |
108 |
Balance |
109 |
Circle Relationship |
110 |
Hexagon Cluster |
111 |
Opposing Ideas |
112 |
Plus and Minus |
113 |
Reverse List |
114 |
Counterbalance Arrows |
115 |
Segmented Pyramid |
116 |
Nested Target |
117 |
Converging Radial |
118 |
Radial List |
119 |
Tabbed Arc |
120 |
Basic Target |
121 |
Basic Venn |
122 |
Linear Venn |
123 |
Stacked Venn |
124 |
Interconnected Rings |
125 |
Basic Matrix |
126 |
Titled Matrix |
127 |
Grid Matrix |
128 |
Basic Pyramid |
129 |
Inverted Pyramid |
130 |
Accented Picture |
131 |
Circular Picture Callout |
132 |
Radial Picture List |
133 |
Snapshot Picture List |
134 |
Spiral Picture |
135 |
Captioned Pictures |
136 |
Bending Picture Caption |
137 |
Picture Frame |
138 |
Bending Picture Semi-Transparent Text |
139 |
Bending Picture Blocks |
140 |
Bending Picture Caption List |
141 |
Titled Picture Blocks |
142 |
Picture Grid |
143 |
Picture Accent Blocks |
144 |
Theme Picture Accent |
145 |
Theme Picture Grid |
146 |
Theme Picture Alternating Accent |
147 |
Alternating Picture Circles |
148 |
Title Picture Lineup |
149 |
Picture Lineup |
150 |
Framed Text Picture |
151 |
Bubble Picture List |