minValue property

double minValue

The minimum value of the range that defines the break.

Implementation

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

Implementation

set minValue(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_ClassBreak_setMinValue(
      _handle,
      value,
      errorHandler,
    );
  });
}