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.v7.Options.QRCodeErrorLevel.Q;
this.barcode1.QRCode.Mask = GrapeCity.GrapeCity.ActiveReports.v7.Options.QRCodeMask.Mask111;
this.barcode1.QRCode.Model = GrapeCity.GrapeCity.ActiveReports.v7.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 |
See Also