[]
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.
IShapes Shapes { get; }
ReadOnly Property Shapes As IShapes
worksheet.Shapes.AddShape(AutoShapeType.Rectangle, 20, 20, 100, 60);
IShapes shapes = worksheet.Shapes;
IShape shape = shapes[0];