scaleX property

double scaleX

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);
  });
}
void scaleX=(double value)

Implementation

set scaleX(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_PictureFillSymbol_setScaleX(_handle, value, errorHandler);
  });
}