barrierId property

int barrierId

Point barrier ID.

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

Implementation

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

Implementation

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