GetElement
function GetElement(nPos: number = null): DocumentElement
Description
Returns an element by its position in the document.
Parameters
- nPos
number
null The element position that will be taken from the document.
Returns
DocumentElement
Try It
var oDocument = Api.GetDocument();
var oSection = oDocument.GetFinalSection();
var oDocContent = oSection.GetHeader("default", true);
var oParagraph = oDocContent.GetElement(0);
oParagraph.AddText("This is the text in the default header");