//create a new workbook Workbook workbook = new Workbook(); //When XlsxOpenOptions.DoNotRecalculateAfterOpened means GrapeCity Documents for Excel will just read all the cached values without calculating again after //opening an Excel file. //Change the path to the real file path when open. XlsxOpenOptions options = new XlsxOpenOptions(); options.setDoNotRecalculateAfterOpened(true); workbook.open("source.xlsx", options);
//create a new workbook var workbook = Workbook() //When XlsxOpenOptions.DoNotRecalculateAfterOpened means GrapeCity Documents for Excel will just read all the cached values without calculating again after //opening an Excel file. //Change the path to the real file path when open. val options = XlsxOpenOptions() options.doNotRecalculateAfterOpened = true workbook.open("source.xlsx", options)