enabled property

bool enabled

True to enable feature reduction, false to show individual geoelements.

The default value is true. Changing this property from false to true may cause data to be re-calculated.

Implementation

bool get enabled {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_FeatureReduction_getEnabled(_handle, errorHandler);
  });
}
void enabled=(bool value)

Implementation

set enabled(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_FeatureReduction_setEnabled(_handle, value, errorHandler);
  });
}