Carica il file excel di origine senza grafici
Contents
[
Hide
]
Aspose.Cells ti permette di caricare il tuo file excel senza grafici. Utilizzare la proprietà LoadOptions.LoadFilter per questo scopo.
Carica il file excel di origine senza grafici
Il seguente codice di esempio carica il file excel di esempio senza grafici e lo salva in formato pdf di output.
//Specify the load options and filter the data
//We do not want to load charts
LoadOptions options = new LoadOptions();
options.setLoadFilter(new LoadFilter(LoadDataFilterOptions.ALL & ~LoadDataFilterOptions.CHART));
//Load the workbook with specified load options
Workbook workbook = new Workbook("sample.xlsx", options);
//Save the workbook in output format
workbook.save("LoadExcelFileWithoutChart_out.pdf", SaveFormat.PDF);