getLength
int getLength()
Description
Returns the length if the CDocBuilderValue
object is an array. Otherwise, returns 0.
Please note, that for the
.docbuilder
file theCDocBuilderValue.getLength
method is not used.
Example
Java
CDocBuilder.initialize("");
CDocBuilder builder = new CDocBuilder();
CDocBuilderContext context = builder.getContext();
CDocBuilderValue global = context.getGlobal();
CDocBuilderValue api = global.get("Api");
CDocBuilderValue document = api.call("GetDocument");
CDocBuilderValue charts = document.call("GetAllCharts");
int length = charts.getLength();
CDocBuilder.dispose();