Shape.GetResultOfSmartArt

Shape.GetResultOfSmartArt method

Converting smart art to grouped shapes.

public virtual GroupShape GetResultOfSmartArt()

Examples


[C#]
if(shape.IsSmartArt)
{
    Aspose.Cells.Drawing.GroupShape groupShape = shape.GetResultOfSmartArt();
}

See Also