Constraints and Dimensions.
To enable or disable the constraints and dimensions functionality, enter
model.component(<ctag>).geom(<tag>).useConstrDim(enable);
To determine whether the constraints and dimensions functionality is enabled, enter
boolean enabled = model.component(<ctag>).geom(<tag>).useConstrDim();
model.component(<ctag>).geom(<tag>).constrDimBuild(value) determines what constraint and dimension features to use when building the geometry. Valid values are:
"all": All (enabled) constraint and dimension features are used. This is the default.
"none": No constraint and dimension features are used.
"uptotarget": All (enabled) constraint and dimension features up to the feature to build are used.
String value = model.component(<ctag>).geom(<tag>).constrDimBuild() returns the constraints and dimensions to use when building. The default is "all".
String status = model.component(<ctag>).geom(<tag>).constrDimStatus() gets a description of the overall status of the constraints and dimensions.