Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxCustomBarCodeProperties.BarCodeSymbologyClass Property

Specifies the reference to the selected barcode symbology class.

#Declaration

Delphi
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