When loading a camera raw image, ImagXpress will normally adjust the brightness and contrast automatically. If you'd prefer this not to happen, or if you want to provide your own BrightnessFactor, set to false.
Syntax
public bool AutoBrightnessAndContrast {get; set;}
public: __property bool get_AutoBrightnessAndContrast();
public: __property void set_AutoBrightnessAndContrast(
bool value
);
public:
property bool AutoBrightnessAndContrast {
bool get();
void set ( bool value);
}
'Declaration
Public Property AutoBrightnessAndContrast As Boolean
'Usage
Dim instance As LoadOptionsCameraRaw
Dim value As Boolean
instance.AutoBrightnessAndContrast = value
value = instance.AutoBrightnessAndContrast
See Also