←Select platform

SymbolModel Property

Summary
Gets or sets the QR barcode symbol model and version.
Syntax
C#
VB
Objective-C
C++
Java
public QRBarcodeSymbolModel SymbolModel { get; set; } 
Public Property SymbolModel As QRBarcodeSymbolModel 
@property (nonatomic, assign) LTQRBarcodeSymbolModel symbolModel 
public QRBarcodeSymbolModel getSymbolModel() 
public void setSymbolModel(QRBarcodeSymbolModel value) 
public: 
property QRBarcodeSymbolModel SymbolModel { 
   QRBarcodeSymbolModel get(); 
   void set (    QRBarcodeSymbolModel ); 
} 

Property Value

A QRBarcodeSymbolModel enumeration member that specifies the QR barcode symbol model and version. Default value is QRBarcodeSymbolModel.Model2AutoSize.

Remarks

The SymbolModel of a QR barcode controls how much data the barcode can hold.

The QR standard specifies 40 different sizes for the QR barcode. The maximum data capacity varies, depending on the size of the barcode and its Error Correction level.

Generally, you should only be concerned with the value of this property when writing barcodes, since LEADTOOLS will automatically find the correct symbol and data size from the barcode itself and populate this property and the data with the correct value. Refer to QR Barcodes in LEADTOOLS for QR barcodes and how QRBarcodeSymbolModel affects the data size.

In addition to the above, the following symbol sizes can be used when writing a QR barcode:

Symbol Model Description
Model 1 Auto size (QRBarcodeSymbolModel.Model1AutoSize)

Use model 1 and the minimum required size based on the data inside the barcode (the data set using BarcodeData.SetData)

Model 2 Auto size (QRBarcodeSymbolModel.Model2AutoSize)

Use model 2 and the minimum required size based on the data inside the barcode (the data set using BarcodeData.SetData)

Use the above special QR barcode symbol sizes when writing a barcode, when reading the QR barcode back, SymbolModel will be set to one of the other constant values.

Example

For an example, refer to QRBarcodeData.

Requirements

Target Platforms

Help Version 21.0.2021.7.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Barcode Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.