如何仅使用文档编辑器插件中的 office api 在另一个表格单元格中添加表格
Posted
技术标签:
【中文标题】如何仅使用文档编辑器插件中的 office api 在另一个表格单元格中添加表格【英文标题】:how to add table within another table cell using only office api from the document editor plugin 【发布时间】:2018-03-22 12:35:39 【问题描述】:我们正在尝试仅使用文档编辑器插件中的 office api 在另一个表格单元格中添加表格。我们试图找出各种方法,例如使用 Range、Run Command、ParagraphAddDrawing、AddElement 等来做到这一点,但无法找到实现它的方法。
请尽早建议我们使用 API 实现此目的的正确方法...
问候
【问题讨论】:
【参考方案1】:您需要获取单元格并在其上使用方法Push()。
例子:
var oDocument = Api.GetDocument(); // getting document object
var oParagraph, oTable, oCell; // init variables
oTable = Api.CreateTable(3, 3); // creating new table object
oCell = oTable.GetRow(0).GetCell(0); //getting first cell in first row
oDocument.Push(oTable); // Push new table to document
oTable_two = Api.CreateTable(3, 3); // creating second table object
oParagraph = oCell.GetContent().Push(oTable_two); // pushing new table to first table
【讨论】:
以上是关于如何仅使用文档编辑器插件中的 office api 在另一个表格单元格中添加表格的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Office 365 JavaScript API 中获取文档标题?
使用Office内置的VBA编辑器实现WORD文档的批量查找替换
使用Office内置的VBA编辑器实现WORD文档的批量查找替换
使用Office内置的VBA编辑器实现WORD文档的批量查找替换