offsetY property

double offsetY

The vertical offset of the picture fill symbol.

Implementation

double get offsetY {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_PictureFillSymbol_getOffsetY(_handle, errorHandler);
  });
}
void offsetY=(double value)

Implementation

set offsetY(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_PictureFillSymbol_setOffsetY(_handle, value, errorHandler);
  });
}