returnPointBarriers property

bool returnPointBarriers

Return point barriers.

Implementation

bool get returnPointBarriers {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_RouteParameters_getReturnPointBarriers(
        _handle, errorHandler);
  });
}
void returnPointBarriers=(bool value)

Implementation

set returnPointBarriers(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_RouteParameters_setReturnPointBarriers(
        _handle, value, errorHandler);
  });
}