有没有办法使用 Office JS 的 Word API 在 table 的单元格中插入内容控件?

Is there a way to insert content controls in the cells of a table using the Word API of Office JS?

我正在尝试使用 Office JS 的 Word API 插入一个 table,它在某些单元格中也包含内容控件。

insertTable() 函数可以插入 table,但它只接受字符串值作为其数据。

我想先插入带有空值的 table,然后搜索各个单元格来填充它们,但插入 [= 后我很难找到单元格23=].

有没有人知道如何做到这一点?

获取 insertTable 返回的 Table 对象并调用它的 getCell or getCellOrNullObject 方法。您将所需单元格 (zero-based) 的行和列索引传递给该方法。