toInt
int toInt()
Description
Converts the CDocBuilderValue
object to an integer.
Please note, that for the
.docbuilder
file theCDocBuilderValue.toInt
method is not used.
Example
Java
CDocBuilder.initialize("");
CDocBuilder builder = new CDocBuilder();
CDocBuilderContext context = builder.getContext();
CDocBuilderValue global = context.getGlobal();
int intValue = global.toInt();
CDocBuilder.dispose();