SmartArtShape.GetResultOfSmartArt

SmartArtShape.GetResultOfSmartArt method

Converting smart art to grouped shapes.

public override GroupShape GetResultOfSmartArt()

Examples


[C#]
Aspose.Cells.Drawing.GroupShape groupShape = shape.GetResultOfSmartArt();
if(groupShape != null)
{
    //do what you want
}

See Also