offsetY property

double offsetY

The offset Y of the marker symbol relative to the graphic or feature's point geometry.

Implementation

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

Implementation

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