opacity property

double opacity

The opacity for the picture marker 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_PictureMarkerSymbol_getOpacity(
        _handle, errorHandler);
  });
}
void opacity=(double value)

Implementation

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