barrierId property

int barrierId

Polyline barrier ID.

This is a caller supplied foreign key that can be used to associate output polyline barriers with input polyline barriers.

Implementation

int get barrierId {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_PolylineBarrier_getBarrierId(_handle, errorHandler);
  });
}
void barrierId=(int value)

Implementation

set barrierId(int value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_PolylineBarrier_setBarrierId(_handle, value, errorHandler);
  });
}