AddColumns
AddColumns([oCell], nCount, [isBefore])
Add a new columns to the current table.
Parameters:
Name |
Type |
Default |
Description |
oCell |
ApiTableCell
|
null |
The cell after which the new columns will be added. If not specified the new columns will be added at the end of the table. |
nCount |
Number
|
|
count of columns to be added |
isBefore |
boolean
|
false |
Add a new columns before or after the specified cell. If no cell is specified
then this parameter will be ignored. |
Example
Copy code
builder.CreateFile("docx");
oDocument = Api.GetDocument();
oTableStyle = oDocument.CreateStyle("CustomTableStyle", "table");
oTableStyle.SetBasedOn(oDocument.GetStyle("Bordered - Accent 5"));
oTable = Api.CreateTable(3, 3);
oTable.SetWidth("percent", 100);
oTable.SetStyle(oTableStyle);
oDocument.Push(oTable);
oCell = oTable.GetCell(0, 0).GetContent().GetElement(0).AddText("Two new columns were added after this cell.");
oTable.AddColumns(oCell, 2, false);
builder.SaveFile("docx", "AddColumns.docx");
builder.CloseFile();
Resulting document