barrierId property
Polygon barrier ID.
This is a caller supplied foreign key that can be used to associate output polygon barriers with input polygon barriers.
Implementation
int get barrierId {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_PolygonBarrier_getBarrierId(
_handle,
errorHandler,
);
});
}
Implementation
set barrierId(int value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_PolygonBarrier_setBarrierId(
_handle,
value,
errorHandler,
);
});
}