不带图表加载源Excel文件

加载不带图表的电子表格

以下示例代码加载不带图表的示例excel文件,并将其保存为输出PDF格式。

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
// The path to the documents directory.
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
// Specify the load options and filter the data
LoadOptions options = new LoadOptions();
// Include everything except charts
options.LoadFilter = new LoadFilter(LoadDataFilterOptions.All & ~LoadDataFilterOptions.Chart);
// Load the workbook with specified load options
Workbook workbook = new Workbook(dataDir + "chart.xlsx", options);
// Save the workbook in PDF format
workbook.Save(dataDir + "ResultWithoutChart.pdf", SaveFormat.Pdf);