Gets or sets the QRCodeOptions for the barcode control.
Syntax
Visual Basic (Declaration) | |
---|
Public Property QRCode As QRCodeOptions |
Remarks
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 Basic | Copy 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