offsetX property

double offsetX

The horizontal offset of the picture fill symbol.

Implementation

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

Implementation

set offsetX(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_PictureFillSymbol_setOffsetX(
      _handle,
      value,
      errorHandler,
    );
  });
}