Represents a picture object.
For a list of all members of this type, see IPicture Members.
[Visual Basic] Public Interface IPicture Implements IShape [C#] public interface IPicture : IShape [C++] public __gc __interface IPicture : public IShape [JScript] public interface IPicture extends IShape
Use IShapes.AddPicture method to create new picture.
The following example adds the shape with JPEG picture on worksheet one.
[C#]
IWorksheet sheet = book.Worksheets[1];
sheet.Cells[3,3].Select(); //the upper-left corner of the shape
sheet.Shapes.AddPicture("image.jpg");
Namespace: NativeExcel
Assembly: NativeExcel (in NativeExcel.dll)
IPicture Members | NativeExcel Namespace | IShapes Interface | IShapes Interface | IWorksheet.Shapes Interface