offsetY property
The vertical offset of the picture fill symbol.
Implementation
double get offsetY {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_PictureFillSymbol_getOffsetY(
_handle,
errorHandler,
);
});
}
Implementation
set offsetY(double value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_PictureFillSymbol_setOffsetY(
_handle,
value,
errorHandler,
);
});
}