opacity property

double opacity

The opacity value of all symbols displayed by the LocationDisplay. The value should be between 0 and 1.

Implementation

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

Implementation

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