[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IWorksheet.Shapes

Shapes Property

Shapes

Gets the IShapes collection that contains all shapes on the worksheet or chart sheet.

Use this property to access and manage drawing objects such as shapes, pictures, and charts associated with the current sheet.

Declaration
IShapes Shapes { get; }
ReadOnly Property Shapes As IShapes
Examples
worksheet.Shapes.AddShape(AutoShapeType.Rectangle, 20, 20, 100, 60);
IShapes shapes = worksheet.Shapes;
IShape shape = shapes[0];