The method suspendApiCalculationUntilNextSync is part of the Excel API 1.6 according to the documentation.
My current setup is a Excel 2016 for Mac v15.40. When I run my project, the test below passes, but as context.sync() does its job, I get the error ApiNotFound.
if (Office.context.requirements.isSetSupported("ExcelApi", 1.6)) {
context.workbook.application.suspendApiCalculationUntilNextSync();
}
Is suspendApiCalculationUntilNextSync really from 1.6?
This code works normally with Excel for Windows. There is an issue here, because both Mac and Windows Excel "says" they support 1.6, but only the Windows version has the method implemented.