Gets
This feature is supported only in xlsx file format. Picture formats that are supported are listed in ExcelPictureFormat.
Following code demonstrates how to use images. It shows next features:
[Visual Basic]
sheet.Pictures.Add( "Image.bmp" )
sheet.Pictures.Add( "Image.bmp", New Rectangle(10, 50, 100, 100) )
[C#]
sheet.Pictures.Add( "Image.bmp" );
sheet.Pictures.Add( "Image.bmp", new Rectangle( 10, 50, 100, 100 ) );
ExcelWorksheet Class | GemBox.Spreadsheet Namespace | ExcelPictureCollection | ExcelPicture