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

Glossary Item Box

Gets or sets the PDF417Options for the barcode control.

Syntax

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

Remarks

PDF417 is a multi-row variable-length symbology that has ten error correction levels and three data compaction modes: Text, Byte, and Numeric. This symbology can encode up to 1,850 alphanumeric characters or 2,710 numeric characters.

PDF417 Options include Column, ErrorLevel, Row, and Type.

Example

C#Copy Code
private void detail_Format(object sender, System.EventArgs eArgs)
{
    this.barcode1.PDF417.Column = 2;
    this.barcode1.PDF417.Row = -1;
    this.barcode1.PDF417.Type = GrapeCity.ActiveReports.Options.PDF417Type.Simple;
}
Visual BasicCopy Code
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
    Me.Barcode1.PDF417.Column = 2
    Me.Barcode1.PDF417.Row = -1
    Me.Barcode1.PDF417.Type = GrapeCity.ActiveReports.Options.PDF417Type.Simple
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.PDF417Options