Property: CurrentECCLevel

(TBarcodeFmx2D_QRCode)

Contains the factual error correction code level of a QR Code barcode symbol.

Syntax:

type

{ Defined in the pfmxQRCode unit }

TQRCode_ECCLevel = (elLowest, elMedium, elQuality, elHighest);

property CurrentECCLevel: TQRCode_ECCLevel;

Description:

The property always contains the factual error correction code level of a QR Code barcode symbol. It can be one of these values (defined in the pfmxQRCode unit):

If the ECCLevelUpgrade property is set to true, the remaining data capacity of a QR Code barcode symbol will be used to automatically upgrade the error correction code level, the highest error correction code level that can be accommodated by current symbol size will by used for creating more robust symbols. Read the property to retrieve the factual error correction code level of the QR Code barcode symbol.

If the ECCLevelUpgrade property is set to false, the error correction code level specified by the ECCLevel property will be used always. The value of this property is always equal to the value of the ECCLevel property.

The property is read only.

See also the "Error checking and correcting (ECC)" section in the "TBarcodeFmx2D_QRCode" article.

Contents