تحميل ملف اكسل المصدر بدون الرسوم البيانية
Contents
[
Hide
]
Aspose.Cells يسمح لك بتحميل ملف excel الخاص بك بدون رسوم بيانية. الرجاء استخدام خاصية LoadOptions.LoadFilter لهذا الغرض.
تحميل ملف اكسل المصدر بدون الرسوم البيانية
يقوم نموذج التعليمات البرمجية التالي بتحميل نموذج ملف Excel بدون مخططات وحفظه بتنسيق PDF الناتج.
//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);