opacity property

double opacity
inherited

The sublayer's opacity.

Will return NAN if an error occurs.

Implementation

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

Implementation

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