Inserts a break at the specified location in the main document.
Name | Type | Description |
breakType | number | The break type: page break (0) or line break (1). |
position | string | The position where the page or line break will be inserted ("before" or "after" the current drawing). |
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); oDrawing.InsertParagraph("Added a line break after this paragraph.", "before", false); oDrawing.AddBreak(1, "before"); builder.SaveFile("docx", "AddBreak.docx"); builder.CloseFile();