yMax property

double yMax

The y maximum value of the Envelope being constructed.

Returns NAN if an error occurs.

Implementation

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

Implementation

set yMax(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_EnvelopeBuilder_setYMax(_handle, value, errorHandler);
  });
}