xMax property
The x maximum value of the Envelope being constructed.
Returns NAN if an error occurs.
Implementation
double get xMax {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_EnvelopeBuilder_getXMax(_handle, errorHandler);
});
}
Implementation
set xMax(double value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_EnvelopeBuilder_setXMax(_handle, value, errorHandler);
});
}