angle property

double angle

The rotation angle of the picture fill symbol in degrees.

The angle will rotate the symbol about its center relative to north. A positive value rotates the symbol clockwise, a negative value rotates the symbol anti-clockwise. The default value is 0.0.

Implementation

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

Implementation

set angle(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_PictureFillSymbol_setAngle(
      _handle,
      value,
      errorHandler,
    );
  });
}