geometry property
The geometry of a point barrier.
The point geometry of Point barrier.
Implementation
ArcGISPoint? get geometry {
final objectHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_PointBarrier_getGeometry(
_handle,
errorHandler,
);
});
return ArcGISPoint._fromHandle(
objectHandle,
);
}
Implementation
set geometry(ArcGISPoint? value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_PointBarrier_setGeometry(
_handle,
value?._handle ?? ffi.nullptr,
errorHandler,
);
});
}