ToJSON

ToJSON(bWriteNumberings, bWriteStyles) → { JSON }

Converts the ApiSection object into the JSON object.

Parameters:

Name Type Description
bWriteNumberings boolean

Specifies if the used numberings will be written to the JSON object or not.

bWriteStyles boolean

Specifies if the used styles will be written to the JSON object or not.

Returns:

Type
JSON

Example

Copy code
builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
oParagraph.AddText("This is a page with a page size set in the current document section.");
var oSection = oDocument.GetFinalSection();
oSection.SetPageMargins(720, 720, 720, 720);
oSection.SetPageSize(7200, 4320);
var json = oSection.ToJSON(false, true);
var oSectionFromJSON = Api.FromJSON(json);
var sType = oSectionFromJSON.GetClassType();
oParagraph.AddLineBreak();
oParagraph.AddText("Class type = " + sType);
builder.SaveFile("docx", "ToJSON.docx");
builder.CloseFile();

Resulting document