ShapeCollection.AddOleObject
ShapeCollection.AddOleObject method
Adds an OleObject.
public OleObject AddOleObject(int topRow, int top, int leftColumn, int left, int height, int width,
byte[] imageData)
| Parameter | Type | Description |
|---|---|---|
| topRow | Int32 | |
| top | Int32 | |
| leftColumn | Int32 | |
| left | Int32 | |
| height | Int32 | |
| width | Int32 | |
| imageData | Byte[] |
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
- class OleObject
- class ShapeCollection
- namespace Aspose.Cells.Drawing
- assembly Aspose.Cells