Office 加载项的方法需要 Excel JS API 1.9 在 Office 2016 上运行。这怎么可能?

Office Add-in with method that requires Excel JS API 1.9 runs on Office 2016. How is this possible?

我制作了一个使用

的 Office JS 插件
copyFrom(sourceRange: Range | RangeAreas | string, copyType?: Excel.RangeCopyType, skipBlanks?: boolean, transpose?: boolean): void;

此方法需要 Excel JS API 1.9,因此根据文档,它在 Office 365 上受支持。此外,我的插件使用了其他需要 Excel JS API > 1.1 的方法。 我想知道我的插件如何在仅支持 Excel JS API 1.1 的 Office 2016 中完全发挥作用。请记住,我没有使用 isSetSupported() 方法进行运行时检查。 我希望我的插件仅能在 Office 365 上运行。你觉得它有意义吗?我错过了什么吗?

Builds 16.0.13426.XXXXX 实际上是每月订阅版本。在撰写本文时实际上是生产中最新公开可用的 Office 版本。因此 1.9 将与 copyFrom API.

一起得到支持