AddRows
function AddRows(nCount: Number = null, isBefore: boolean = false): ApiTable | "null"
Description
Adds the new rows to the current table.
Parameters
- nCount
Number
null Count of rows to be added.
- isBefore
boolean
false Specifies if the new rows will be added before or after the current cell.
Returns
ApiTable | "null"
Try It
var oDocument = Api.GetDocument();
var oTableStyle = oDocument.CreateStyle("CustomTableStyle", "table");
oTableStyle.SetBasedOn(oDocument.GetStyle("Bordered"));
var oTable = Api.CreateTable(3, 3);
oTable.SetWidth("percent", 100);
oTable.SetStyle(oTableStyle);
oDocument.Push(oTable);
oTable.GetCell(0, 0).GetContent().GetElement(0).AddText("Two new rows were added after this cell.");
oTable.GetCell(0, 0).AddRows(2, false);