ToJSON

function ToJSON(bWriteNumberings: any = null, bWriteStyles: any = null): void

Description

Converts the ApiDocumentContent object into the JSON object.

Parameters

bWriteNumberingsanydefault: null

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

bWriteStylesanydefault: null

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

Returns

void

Overloads By

ToJSON(bWriteDefaultTextPr, bWriteDefaultParaPr, bWriteTheme, bWriteSectionPr, bWriteNumberings, bWriteStyles): JSON

Converts the ApiDocument object into the JSON object.

Try It

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 = oDocContent.GetElement(0);
oParagraph.AddText("We removed all elements from the shape and added a new paragraph inside it.");
var json = oDocContent.ToJSON(false, true);
var oDocContentFromJSON = Api.FromJSON(json);
var sType = oDocContentFromJSON.GetClassType();
oDocContentFromJSON.RemoveAllElements();
oParagraph = oDocContentFromJSON.GetElement(0);
oParagraph.AddText("Class type = " + sType);
Api.ReplaceDocumentContent(oDocContentFromJSON);

Get Help

  • If you have any questions about ONLYOFFICE Docs, try the FAQ section first.
  • You can request a feature or report a bug by posting an issue on GitHub.
  • You can also ask our developers on ONLYOFFICE forum (registration required).