Shape.IsSmartArt

Shape.IsSmartArt property

Indicates whether the shape is smart art.

public bool IsSmartArt { get; }

Remarks

Only for ooxml file.

Examples


[C#]
//if true,the shape is smart art.
if(shape.IsSmartArt)
{
    //The shape is SmartArt object.
}

See Also