
'Declaration <ObsoleteAttribute("We recommend replacing any ImageGear for .NET Barcode functionality with our more accurate and powerful Barcode Xpress solution. Please contact your sales representative for details.")> Public Class ImGearBarcodeResult
'Usage Dim instance As ImGearBarcodeResult
[Obsolete("We recommend replacing any ImageGear for .NET Barcode functionality with our more accurate and powerful Barcode Xpress solution. Please contact your sales representative for details.")] public class ImGearBarcodeResult
[Obsolete("We recommend replacing any ImageGear for .NET Barcode functionality with our more accurate and powerful Barcode Xpress solution. Please contact your sales representative for details.")] public __gc class ImGearBarcodeResult
[Obsolete("We recommend replacing any ImageGear for .NET Barcode functionality with our more accurate and powerful Barcode Xpress solution. Please contact your sales representative for details.")] public ref class ImGearBarcodeResult
The ImGearBarcodeReader.Analyze method returns a collection of ImGearBarcodeResult objects. Each element of the ImGearBarcodeResult collection contains the results of a single recognized barcode (or unsolved barcode. See ImGearBarcodeReader.ReturnPossibleBarcodes).
Since ImGearBarcode can return multiple barcode results from a single scan, the detected barcode results (both solved and unsolved) are sorted using the following criteria.
Note: All solved barcodes are ordered before unsolved barcodes.
Four points describe the location of the barcode on the image:
using ImageGear.Barcode; // call Analyze to detect barcodes in the image // all detected barcodes will be returned to the // ImGearBarcodeResult object collection. List<ImGearBarcodeResult> results = new List<ImGearBarcodeResult>(); results.AddRange(myBarcode.ImGearBarcodeReader.Analyze(myPage)); // get some results info, if any foreach (ImGearBarcodeResult curResult in results) { // do something with results MessageBox.Show(curResult.BarcodeName); MessageBox.Show(curResult.BarcodeValue); }
System.Object
ImageGear.Barcode.ImGearBarcodeResult