Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

QRCodeOptions.Version Property

Gets or sets the QR Code version.

Namespace: DevExpress.BarCodes

Assembly: DevExpress.Docs.v20.2.dll

Declaration

public QRCodeVersion Version { get; set; }

Property Value

Type Description
QRCodeVersion

A QRCodeVersion enumeration value indicating the code version.

Property Paths

You can access this nested property as listed below:

Object Type Path to Version
BarCodeOptions
.QRCode .Version

Remarks

The QR code version defines the size of a code’s side.

The code snippet below shows how to use the Version property to specify the QR Code size:

BarCode barCode = new BarCode();
barCode.Symbology = Symbology.QRCode;
barCode.Options.QRCode.Version = QRCodeVersion.Version10;
See Also