Pushes a paragraph or a table to actually add it to the document.
Name | Type | Description |
oElement | DocumentElement | The element type which will be pushed to the document. |
builder.CreateFile("docx"); var oDocument = Api.GetDocument(); var oParagraph = oDocument.GetElement(0); var oFill = Api.CreateSolidFill(Api.CreateRGBColor(255, 111, 61)); var oStroke = Api.CreateStroke(0, Api.CreateNoFill()); var oDrawing = Api.CreateShape("rect", 3212465, 963295, oFill, oStroke); oParagraph.AddDrawing(oDrawing); var oDocContent = oDrawing.GetDocContent(); oDocContent.RemoveAllElements(); oParagraph = Api.CreateParagraph(); oParagraph.SetJc("left"); oParagraph.AddText("We removed all elements from the shape and added a new paragraph inside it."); oDocContent.Push(oParagraph); builder.SaveFile("docx", "Push.docx"); builder.CloseFile();