AddElement
function AddElement(nPos: number = null, oElement: DocumentElement = null): boolean
Description
Adds a paragraph or a table or a blockLvl content control using its position in the cell.
Parameters
- nPos
number
null The position where the current element will be added.
The document element which will be added at the current position.
Returns
boolean
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);
var oParagraph = Api.CreateParagraph();
oParagraph.AddText("This is just a sample text in the first cell.");
var oCell = oTable.GetCell(0, 0);
oCell.AddElement(0, oParagraph);