Property: Inversed

(TBarcode2D_AztecCode, TBarcode2D_DataMatrixECC200, TBarcode2D_QRCode, etc.)

Specifies whether to represent a barcode symbol in inversed color (reflectance reversal).

Syntax:

property Inversed: Boolean;

Description:

Specifies whether to represent a barcode symbol in inversed color (reflectance reversal).

In general, the barcode symbol is dark foreground on light background. In this case, the Inversed property should be set to false, and all light modules in the barcode symbol are represented using the color specified by the SpaceColor property, all dark modules are represented using the color specified by the BarColor property.

If the barcode symbol is light foreground on dark background, the Inversed property should be set to true, and all light modules in the barcode symbol are represented using the color specified by the BarColor property, all dark modules are represented using the color specified by the SpaceColor property.

See diagram:

Inversed property

When the leading quiet zone, trailing quiet zone, top quiet zone, and bottom quiet zone are represented (the ShowQuietZone property value is set to true), if the Inversed property is set to false, the color specified by the SpaceColor property will be used to represent the quiet zones, otherwise, the color specified by the BarColor property will be used. See diagram (the SpaceColor property value is set to clSilver in order to accentuate the quiet zones):

Inversed property (Quiet zones)

Contents