The Results Class includes properties used to return barcode recognition results.
'Declaration
Public Class Result
'Usage
Dim instance As Result
using Accusoft.BarcodeXpressSdk;
// call Analyze to detect barcodes in the image
// all detected barcodes will be returned to the
// Result object array.
Result[] results = bcXpress.reader.Analyze(hDib);
// get some results info, if any
for (short i = 0; i < results.Length; i++)
{
// get result for current barcode
Result curResult = (Result)results.GetValue(i);
// do something with results
Console.WriteLine(curResult.BarcodeName);
Console.WriteLine(curResult.BarcodeValue);
}
System.Object
Accusoft.BarcodeXpressSdk.Result