offsetX property
The horizontal offset of the picture fill symbol.
Implementation
double get offsetX {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_PictureFillSymbol_getOffsetX(_handle, errorHandler);
});
}
Implementation
set offsetX(double value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_PictureFillSymbol_setOffsetX(_handle, value, errorHandler);
});
}