CreateParagraph
function CreateParagraph(): ApiParagraph
Description
Creates a new paragraph.
Returns
ApiParagraph
Try It
var oDocument = Api.GetDocument();
var oParagraph = Api.CreateParagraph();
oParagraph.AddText("This is a new paragraph");
oDocument.Push(oParagraph);