maxValue property

double maxValue

The maximum value of the range that defines the break.

Implementation

double get maxValue {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ClassBreak_getMaxValue(
      _handle,
      errorHandler,
    );
  });
}
void maxValue=(double value)

Implementation

set maxValue(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_ClassBreak_setMaxValue(
      _handle,
      value,
      errorHandler,
    );
  });
}