returnPolygonBarriers property

bool returnPolygonBarriers

Return polygon barriers.

Implementation

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

Implementation

set returnPolygonBarriers(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_RouteParameters_setReturnPolygonBarriers(
        _handle, value, errorHandler);
  });
}