GenJsonString method: Document class
Syntax
GenJsonString()
Description
Use the GenJsonString method to generate a JSON (JavaScript Object Notation) structure from the Document object.
Parameters
None.
Returns
A String value.
Example
Local Document &DOC;
Local string &JSONdata;
&JSONdata = &DOC.GenJsonString();
&b_ret = &DOC.ParseJsonString(&JSONdata, False);