GetElement
function GetElement(nPos: any = null): void
Description
Returns an element by its position in the document.
Parameters
- nPos
any
null The element position that will be taken from the document.
Returns
void
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");