maxValue property
The maximum value of the range that defines the break.
Implementation
double get maxValue {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ClassBreak_getMaxValue(_handle, errorHandler);
});
}
Implementation
set maxValue(double value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_ClassBreak_setMaxValue(_handle, value, errorHandler);
});
}