minValue property
The minimum value of the range that defines the break.
Implementation
double get minValue {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ClassBreak_getMinValue(_handle, errorHandler);
});
}
Implementation
set minValue(double value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_ClassBreak_setMinValue(_handle, value, errorHandler);
});
}