ShapeCollection.AddOleObject

ShapeCollection.AddOleObject method

Adds an OleObject.

public OleObject AddOleObject(int upperLeftRow, int top, int upperLeftColumn, int left, int height, 
    int width, byte[] imageData)
ParameterTypeDescription
upperLeftRowInt32
topInt32
upperLeftColumnInt32
leftInt32
heightInt32
widthInt32
imageDataByte[]

Examples

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

namespace AsposeCellsExamples
{
    public class ShapeCollectionMethodAddOleObjectWithInt32Int32Int32Int32Int32Int32Demo
    {
        public static void Run()
        {
            Workbook workbook = new Workbook();
            Worksheet worksheet = workbook.Worksheets[0];
            ShapeCollection shapes = worksheet.Shapes;

            byte[] imageData = File.ReadAllBytes("image.jpg");
            shapes.AddOleObject(4, 0, 5, 0, 300, 500, imageData);
            
            workbook.Save("output.xlsx");
        }
    }
}

See Also