Specifies the bit depth (bits per channel) of the image to scan.

Namespace: HiComponents.IEvolution
Assembly: IEvolution2 (in IEvolution2.dll) Version: 10.1.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public IEIntList BitDepth { get; }
Public ReadOnly Property BitDepth As IEIntList
	Get
public:
property IEIntList^ BitDepth {
	IEIntList^ get ();
}

Examples

CopyC#
// acquire 48 bit (RGB, 16 bit per pixel) native pixels
ieViewer.Image.LegacyBitmap=false;
ieViewer.Image.NativePixelFormat=true;
ieViewer.Image.TWainParams.BitDepth.CurrentValue=16;
ieViewer.Image.Acquire();

See Also