scaleX property
The horizontal scaling of the picture fill symbol.
The default value is 1.0.
Implementation
double get scaleX {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_PictureFillSymbol_getScaleX(_handle, errorHandler);
});
}
Implementation
set scaleX(double value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_PictureFillSymbol_setScaleX(_handle, value, errorHandler);
});
}