toBool
boolean toBool()
Description
Converts the CDocBuilderValue
object to a boolean value.
Please note, that for the
.docbuilder
file theCDocBuilderValue.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();