ActiveReports 6 Online Help
QRCode Property
Example 

Gets or sets the QRCodeOptions for the barcode control.
Syntax
'Declaration
 
Public Property QRCode As QRCodeOptions
public QRCodeOptions QRCode {get; set;}
Remarks
QRCode is a two-dimensional symbology that is capable of handling numeric, alphanumeric and byte data as well as Japanese kanji and kana characters. This symbology can encode up to 7,366 characters.
Example
Paste into the Detail Format event.
this.barcode1.QRCode.Connection = false;
    this.barcode1.QRCode.ConnectionNumber = 0;
    this.barcode1.QRCode.ErrorLevel = DataDynamics.ActiveReports.Options.QRCodeErrorLevel.Q;
    this.barcode1.QRCode.Mask = DataDynamics.ActiveReports.Options.QRCodeMask.Mask111;
    this.barcode1.QRCode.Model = DataDynamics.ActiveReports.Options.QRCodeModel.Model2;
    this.barcode1.QRCode.Version = 3;
Paste into the Detail Format event.
Me.Barcode1.QRCode.Connection = False
    Me.Barcode1.QRCode.ConnectionNumber = 0
    Me.Barcode1.QRCode.ErrorLevel = Options.QRCodeErrorLevel.Q
    Me.Barcode1.QRCode.Mask = Options.QRCodeMask.Mask111
    Me.Barcode1.QRCode.Model = Options.QRCodeModel.Model2
    Me.Barcode1.QRCode.Version = 3
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

Barcode Class
Barcode Members
QRCodeOptions Class

Send Feedback