toBool
boolean toBool();
Converts the CDocBuilderValue object to a boolean value.
Please note, that for the .docbuilder file the CDocBuilderValue.toBool method is not used.
Example
Java
CDocBuilder.initialize("");
CDocBuilder builder = new CDocBuilder();
CDocBuilderContext context = builder.getContext();
CDocBuilderValue global = context.getGlobal();
boolean boolValue = global.toBool();
CDocBuilder.dispose();