getGlobal
CDocBuilderValue getGlobal()
Description
Returns the global object for the current context.
Please note, that for the
.docbuilder
file theCDocBuilderContext.getGlobal
method is not used.
Example
Java
CDocBuilder.initialize("");
CDocBuilder builder = new CDocBuilder();
CDocBuilderContext context = builder.getContext();
CDocBuilderValue global = context.getGlobal();
CDocBuilder.dispose();