createObject
CDocBuilderValue createObject()
Description
Creates an empty object, an analogue of {}
in JS.
Please note, that for the
.docbuilder
file theCDocBuilderContext.createObject
method is not used.
Example
Java
CDocBuilder.initialize("");
CDocBuilder builder = new CDocBuilder();
CDocBuilderContext context = builder.getContext();
CDocBuilderValue objectValue = context.createObject();
CDocBuilder.dispose();