opacity property
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,
);
});
}
Implementation
set opacity(double value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_ArcGISMapImageSublayer_setOpacity(
_handle,
value,
errorHandler,
);
});
}