GetElement
Returns an element by its position in the document.
Parameters:
Name |
Type |
Description |
nPos |
number
|
The element position that will be taken from the document. |
Returns:
- Type
-
DocumentElement
Example
Copy code
builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
var oRun = Api.CreateRun();
oRun.AddText("This is just a sample text. Nothing special.");
oParagraph.AddElement(oRun);
builder.SaveFile("docx", "GetElement.docx");
builder.CloseFile();
Resulting document