ToJSON
Converts the ApiHyperlink object into the JSON object.
Parameters:
Name |
Type |
Description |
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);
var oHyperlink = Api.CreateHyperlink("https://api.onlyoffice.com/", "ONLYOFFICE Document Builder", "ONLYOFFICE for developers");
let json = oHyperlink.ToJSON(true);
var oHyperlinkFromJSON = Api.FromJSON(json);
oParagraph.AddElement(oHyperlinkFromJSON);
builder.SaveFile("docx", "ToJSON.docx");
builder.CloseFile();
Resulting document