contrast property
The contrast of the layer.
Implementation
double get contrast {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ImageAdjustmentLayer_getContrast(
_handle, errorHandler);
});
}
Implementation
set contrast(double value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_ImageAdjustmentLayer_setContrast(
_handle, value, errorHandler);
});
}