Skip to main content

TdxCustomBarCodeProperties.BarCodeSymbologyClass Property

Specifies the reference to the selected barcode symbology class.

Declaration

property BarCodeSymbologyClass: TdxCustomBarCodeSymbologyClass read; write;

Property Value

Type Description
TdxCustomBarCodeSymbologyClass

The reference to the active barcode symbology class.

Remarks

You can assign a class-reference to the barcode symbology class to select the corresponding barcode type in Delphi code.

//...
uses
  dxBarCode,
  dxBarCodeUtils;  // Symbology classes are declared in this unit
//...
  dxBarCode1.Properties.BarCodeSymbologyClass := TdxBarCode93ExtendedSymbology;

Refer to the Symbology property description for the full list of available barcode symbology types.

See Also