ToJSON

ToJSON(bWriteNumberings, bWriteStyles) → { JSON }

Converts the ApiRange 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("ONLYOFFICE Document Builder");
var oRange = Api.CreateRange(oParagraph, 0, 9);
oRange.SetBold(true);
var json = oRange.ToJSON(false, true);
var oRangeFromJSON = Api.FromJSON(json);
oDocument.Push(oRangeFromJSON[0]);
builder.SaveFile("docx", "ToJSON.docx");
builder.CloseFile();

Resulting document