'Declaration
Public Overloads Function BarcodeAztecReaderDoScan( _ ByVal ImageID As Integer, _ ByVal ScanMode As BarcodeAztecReaderScanMode, _ ByVal ExpectedCount As Integer, _ ByVal StopOnExpectedCount As Boolean _ ) As GdPictureStatus
public GdPictureStatus BarcodeAztecReaderDoScan( int ImageID, BarcodeAztecReaderScanMode ScanMode, int ExpectedCount, bool StopOnExpectedCount )
public function BarcodeAztecReaderDoScan( ImageID: Integer; ScanMode: BarcodeAztecReaderScanMode; ExpectedCount: Integer; StopOnExpectedCount: Boolean ): GdPictureStatus;
public function BarcodeAztecReaderDoScan( ImageID : int, ScanMode : BarcodeAztecReaderScanMode, ExpectedCount : int, StopOnExpectedCount : boolean ) : GdPictureStatus;
public: GdPictureStatus BarcodeAztecReaderDoScan( int ImageID, BarcodeAztecReaderScanMode ScanMode, int ExpectedCount, bool StopOnExpectedCount )
public: GdPictureStatus BarcodeAztecReaderDoScan( int ImageID, BarcodeAztecReaderScanMode ScanMode, int ExpectedCount, bool StopOnExpectedCount )
Parameters
- ImageID
- A unique image identifier of the GdPicture image representing the image in use.
- ScanMode
- A member of the BarcodeAztecReaderScanMode enumeration. The scan mode (speed or quality) used for scanning process.
- ExpectedCount
- Specifies the number of barcodes expected to be detected. Use 0 to find all available barcodes within an image.
- StopOnExpectedCount
- If this is set to true and ExpectedCount > 0, the recognition process stops after first ExpectedCount barcodes were found.
Return Value
A member of the GdPictureStatus enumeration. If the method has been successfully followed, then the return value is GdPictureStatus.OK.
We strongly recommend always checking this status first.