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

Glossary Item Box

Gets or sets the Code49Options for the barcode control.

Syntax

Visual Basic (Declaration) 
Public Property Code49 As Code49Options
C# 
public Code49Options Code49 {get; set;}

Remarks

Code 49 is a high-density stacked symbology containing two to eight rows of eight characters each. Each row has a start code and a stop code.

Code49 Options include Grouping and Group.  If Grouping is set to True, the Group property may be set to a number between 0 and 8.  The default values are False and 0, respectively.

Example

C#Copy Code
private void detail_Format(object sender, System.EventArgs eArgs)
{
    this.barcode1.Code49.Grouping = true;
    this.barcode1.Code49.Group = 4;
}
Visual BasicCopy Code
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
    Me.Barcode1.Code49.Grouping = True
    Me.Barcode1.Code49.Group = 4
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.Code49Options