scaleY property
The vertical scaling of the picture fill symbol.
The default value is 1.0.
Implementation
double get scaleY {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_PictureFillSymbol_getScaleY(
_handle,
errorHandler,
);
});
}
Implementation
set scaleY(double value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_PictureFillSymbol_setScaleY(
_handle,
value,
errorHandler,
);
});
}