ShapeCollection.AddShape

ShapeCollection.AddShape method

Adds a Shape to the worksheet.

public Shape AddShape(MsoDrawingType type, int topRow, int top, int leftColumn, int left, 
    int height, int width)
ParameterTypeDescription
typeMsoDrawingTypeMso drawing type.
topRowInt32Upper left row index.
topInt32Represents the vertical offset of Shape from its left row, in unit of pixel.
leftColumnInt32Upper left column index.
leftInt32Represents the horizontal offset of Shape from its left column, in unit of pixel.
heightInt32Represents the height of Shape, in unit of pixel.
widthInt32Represents the width of Shape, in unit of pixel.

Return Value

A Shape object.

Remarks

The type could not be Chart/Comment/Picture/OleObject/Polygon/DialogBox

Examples

using System;
using Aspose.Cells;
using Aspose.Cells.Drawing;

namespace AsposeCellsExamples
{
    public class ShapeCollectionMethodAddShapeWithMsoDrawingTypeInt32Int32Int32IDemo
    {
        public static void Run()
        {
            Workbook workbook = new Workbook();
            Worksheet worksheet = workbook.Worksheets[0];
            
            ShapeCollection shapes = worksheet.Shapes;
            Shape shape = shapes.AddShape(MsoDrawingType.Rectangle, 0, 0, 100, 100, 200, 50);
            
            Console.WriteLine("Shape added successfully.");
        }
    }
}

See Also