barrierId property
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);
});
}
Implementation
set barrierId(int value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_PointBarrier_setBarrierId(_handle, value, errorHandler);
});
}