跳到主要内容

AddColumns

向当前表格添加新列。

语法

expression.AddColumns(oCell, nCount, isBefore);

expression - 表示 ApiTable 类的变量。

参数

名称必需/可选数据类型默认值描述
oCell可选ApiTableCell将在该单元格之后添加新列。如果未指定,将在表格末尾添加新列。
nCount必需Number要添加的列数。
isBefore可选booleanfalse在指定单元格之前(false)或之后(true)添加新列。如果未指定单元格,则将忽略此参数。

返回值

ApiTable

示例

此示例向表格添加新列。

// How to insert columns to the table.

// Get a table cell and insert two new columns after it.

let doc = Api.GetDocument();
let tableStyle = doc.CreateStyle("CustomTableStyle", "table");
tableStyle.SetBasedOn(doc.GetStyle("Bordered"));
let table = Api.CreateTable(3, 3);
table.SetWidth("percent", 100);
table.SetStyle(tableStyle);
doc.Push(table);
let cell = table.GetCell(0, 0).GetContent().GetElement(0).AddText("Two new columns were added after this cell.");
table.AddColumns(cell, 2, false);