Barcode index. Must be between 1 and Barcode1DReaderGetBarcodeCount returned value.





In This Topic
GdPicture14 Namespace / GdPictureImaging Class / Barcode1DReaderGetBarcodeValueRAW Method

Barcode1DReaderGetBarcodeValueRAW Method (GdPictureImaging)

In This Topic
Returns the value of a barcode detected by the Barcode1DReaderDoScan method, in its raw format.
Syntax
'Declaration
 
Public Function Barcode1DReaderGetBarcodeValueRAW( _
   ByVal BarcodeNo As Integer _
) As Byte()
public byte[] Barcode1DReaderGetBarcodeValueRAW( 
   int BarcodeNo
)
public function Barcode1DReaderGetBarcodeValueRAW( 
    BarcodeNo: Integer
): array of Byte; 
public function Barcode1DReaderGetBarcodeValueRAW( 
   BarcodeNo : int
) : byte[];
public: byte[]* Barcode1DReaderGetBarcodeValueRAW( 
   int BarcodeNo
) 
public:
array<byte>^ Barcode1DReaderGetBarcodeValueRAW( 
   int BarcodeNo
) 

Parameters

BarcodeNo
Barcode index. Must be between 1 and Barcode1DReaderGetBarcodeCount returned value.

Return Value

The barcode data.
Remarks

Use the GetStat() method to check if this method has completed successfully.

This method is used in the "Barcode Recognition" Demo.

See Also