GetSections
Gets the collection of section objects in the document.
Parameters:
This method doesn't have any parameters.
Returns:
- Type
-
Array.<ApiSection>
Example
Copy code
builder.CreateFile("docx");
oDocument = Api.GetDocument();
oParagraph = oDocument.GetElement(0);
oParagraph.AddText("This is a new paragraph.");
oParagraph.AddLineBreak();
oParagraph.AddText("Scroll down to see the new section.");
oSection1 = oDocument.CreateSection(oParagraph);
oParagraph = Api.CreateParagraph();
oParagraph.AddText("This is a paragraph in a new section");
oDocument.Push(oParagraph);
oSections = oDocument.GetSections();
oParagraph = Api.CreateParagraph();
oClassType = oSections[1].GetClassType();
oParagraph.AddText("Class type: " + oClassType);
oDocument.Push(oParagraph);
builder.SaveFile("docx", "GetSections.docx");
builder.CloseFile();
Resulting document