Illustrations
GemBox.Spreadsheet supports XLSX preservation of illustrations, Smart Art, Word Art, etc.
We advise our customers to use XLSX for more advanced features (images, comments, charts), because XLSX conforms to public Open XML specification.
You can read XLSX files with Excel 2003 and older with Microsoft Office Compatibility Pack.

using GemBox.Spreadsheet;
class Program
{
static void Main()
{
// If using Professional version, put your serial key below.
SpreadsheetInfo.SetLicense("FREE-LIMITED-KEY");
var workbook = ExcelFile.Load("%InputFileName%");
workbook.Save("Illustrations.xlsx");
}
}
Imports GemBox.Spreadsheet
Module Program
Sub Main()
' If using Professional version, put your serial key below.
SpreadsheetInfo.SetLicense("FREE-LIMITED-KEY")
Dim workbook = ExcelFile.Load("%InputFileName%")
workbook.Save("Illustrations.xlsx")
End Sub
End Module
Want more?
Like it?
Published: February 10, 2020 | Modified: March 20, 2020 | Author: Mario Zorica