EBarCode::GetDecodedString

Decoded bar code string.

Namespace: Euresys::Open_eVision::EasyBarCode2

[C++]

std::string GetDecodedString(
   bool includeChecksum
)

std::string GetDecodedString(
   Euresys::Open_eVision::EasyBarCode2::EBarCodeSymbologies symbology,
   bool includeChecksum
)

Parameters

includeChecksum

Indicates if the returned string should include the check character (default: true)

symbology

Chosen symbology

Remarks

If the symbology parameter is omitted, the property returns the value pertaining to the barcode's most likely symbology. If you choose to exclude the check character and you use a symbology where it is optional, be sure it is included as the character corresponding to the checksum position will be removed in all cases. When the symbology is EBarCodeSymbologies_Gs1_128, no checksum is returned no matter the value of includeChecksum as it would break the parsing of the machine readable Gs1 code.

EBarCode.GetDecodedString

Decoded bar code string.

Namespace: Euresys.Open_eVision.EasyBarCode2

[C#]

string GetDecodedString(
   bool includeChecksum
)

string GetDecodedString(
   Euresys.Open_eVision.EasyBarCode2.EBarCodeSymbologies symbology,
   bool includeChecksum
)

Parameters

includeChecksum

Indicates if the returned string should include the check character (default: true)

symbology

Chosen symbology

Remarks

If the symbology parameter is omitted, the property returns the value pertaining to the barcode's most likely symbology. If you choose to exclude the check character and you use a symbology where it is optional, be sure it is included as the character corresponding to the checksum position will be removed in all cases. When the symbology is Gs1_128, no checksum is returned no matter the value of includeChecksum as it would break the parsing of the machine readable Gs1 code.