InlineShape.SmartArt property (Word)

Returns a SmartArt object that provides a way to work with the SmartArt associated with the specified inline shape. Read-only.

Syntax

expression.SmartArt

expression A variable that represents an 'InlineShape' object.

Remarks

The SmartArt property provides an entry point for interacting with a SmartArt graphic associated with the inline shape.

Example

The following code example adds a SmartArt graphic to the active document.

Dim myDoc As Document 
Dim myInlineShape As InlineShape 
Dim mySmartArt As SmartArt 
 
Set myDoc = ActiveDocument 
Set myInlineShape = myDoc.InlineShapes.AddSmartArt(Application.SmartArtLayouts(2), myDoc.Paragraphs(2).Range) 
Set mySmartArt = myShape.SmartArt 

See also

InlineShape Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.