enabled property
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);
});
}
Implementation
set enabled(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_FeatureReduction_setEnabled(_handle, value, errorHandler);
});
}