opacity property

double opacity

The opacity for the picture fill symbol.

The value ranges from 0.0 (fully transparent) to 1.0 (opaque). The default value is 1.0.

Implementation

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

Implementation

set opacity(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_PictureFillSymbol_setOpacity(_handle, value, errorHandler);
  });
}