Hello. I am a private deployment. I wonder if there are any callbacks for inserting rows or columns to facilitate my data processing. Thank you.
Hello,
Please clarify, in what particular Editor would you like to insert rows and columns? Spreadsheet editor?
For Spreadsheet Editor it can be achieved using the following script:
var oDocument = Api.GetDocument();
var oTable, oCell;
oTable = Api.CreateTable(2, 2);
oTable.GetRow(0).GetCell(0).GetContent().GetElement(0).AddText("Example 1");
oTable.GetRow(1).GetCell(1).GetContent().GetElement(0).AddText("Example 2");
oDocument.Push(oTable);
Thank you, I want to know how this api came from