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.
Returns a SmartArt object that provides a way to work with the SmartArt associated with the specified inline shape. Read-only.
Version Information
Version Added: Word 2010
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