Skip to main content
A newer version of this page is available. .

QRCodeGenerator.CompactionMode Property

Gets or sets whether numeric, alpha-numeric or byte information should be used as the bar code’s data.

Namespace: DevExpress.XtraPrinting.BarCode

Assembly: DevExpress.Printing.v19.2.Core.dll

Declaration

[DefaultValue(QRCodeCompactionMode.AlphaNumeric)]
public QRCodeCompactionMode CompactionMode { get; set; }

Property Value

Type Default Description
QRCodeCompactionMode **AlphaNumeric**

A QRCodeCompactionMode enumeration value.

Available values:

Name Description
Numeric

Numeric data is encoded. Max. 7,089 characters.

AlphaNumeric

A combination of alphabetic and numeric characters is encoded. Max. 4,296 characters.

Byte

Binary data is encoded. Max. 2,953 bytes.

Remarks

The bar code encodes the value of the XRBarCode.Text and XRBarCode.BinaryData properties.

If the XRBarCode.Text property is not defined, the bar code encodes the XRBarCode.BinaryData property value.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the CompactionMode property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also