AddRow

AddRow([oCell], [isBefore]) → { ApiTableRow }

Adds a new row to the current table.

Parameters:

Name Type Default Description
oCell ApiTableCell null

The cell after which a new row will be added. If not specified, a new row will be added at the end of the table.

isBefore boolean false

Adds a new row before (false) or after (true) the specified cell. If no cell is specified, then this parameter will be ignored.

Returns:

Type
ApiTableRow

Example

Copy code
builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
oParagraph.AddText("We create a 2x2 table and add a new row, so that it becomes 2x3:");
var oTableStyle = oDocument.CreateStyle("CustomTableStyle", "table");
oTableStyle.SetBasedOn(oDocument.GetStyle("Bordered"));
var oTable = Api.CreateTable(2, 2);
oTable.SetWidth("percent", 100);
oTable.SetStyle(oTableStyle);
oTable.AddRow(oTable.GetRow(1).GetCell(0), true);
oDocument.Push(oTable);
builder.SaveFile("docx", "AddRow.docx");
builder.CloseFile();

Resulting document