ActiveReports 8
QRCode Property
See Also  Example
GrapeCity.ActiveReports.v8 Assembly > GrapeCity.ActiveReports.SectionReportModel Namespace > Barcode Class : QRCode Property

Glossary Item Box

Gets or sets the QRCodeOptions for the barcode control.

Syntax

Visual Basic (Declaration) 
Public Property QRCode As QRCodeOptions
C# 
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.
C#Copy Code
private void detail1_Format(object sender, System.EventArgs eArgs)
{
    this.barcode1.QRCode.Connection = false;
    this.barcode1.QRCode.ConnectionNumber = 0;
    this.barcode1.QRCode.ErrorLevel = GrapeCity.GrapeCity.ActiveReports.v8.Options.QRCodeErrorLevel.Q;
    this.barcode1.QRCode.Mask = GrapeCity.GrapeCity.ActiveReports.v8.Options.QRCodeMask.Mask111;
    this.barcode1.QRCode.Model = GrapeCity.GrapeCity.ActiveReports.v8.Options.QRCodeModel.Model2;
    this.barcode1.QRCode.Version = 3;
}
Paste into the Detail Format event.
Visual BasicCopy Code
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
    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
End Sub

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
ActiveReports6~GrapeCity.ActiveReports.Options.QRCodeOptions