ToJSON

function ToJSON(bWriteStyles: boolean = null): JSON

Description

Converts the ApiRun object into the JSON object.

Parameters

bWriteStylesbooleandefault: null

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

Returns

JSON

Overloads

ToJSON(bWriteStyles)

Converts the ApiTextPr object into the JSON object.

Try It

var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
var oRun = Api.CreateRun();
oRun.AddText("This is a text run");
var json = oRun.ToJSON(true);
var oRunFromJSON = Api.FromJSON(json);
oRunFromJSON.SetBold(true);
oParagraph.AddElement(oRunFromJSON);

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).