Class PDF417Encoder
Defines the PDF417 encoder class.
Inherited Members
Namespace: Telerik.Reporting.Barcodes
Assembly: Telerik.Reporting.dll
Syntax
public class PDF417Encoder : Encoder2D
Constructors
PDF417Encoder()
Initializes a new instance of the PDF417Encoder class.
Declaration
public PDF417Encoder()
Examples
This example illustrates how to set the PDF417Encoder properties.
var encoder = new Telerik.Reporting.Barcodes.PDF417Encoder();
encoder.Columns = 3;
encoder.Rows = 3;
encoder.Encoding = Telerik.Reporting.Barcodes.PDF417.EncodingMode.Auto;
encoder.ErrorCorrectionLevel = 2;
this.barcode1.Encoder = encoder;
Dim encoder = New Telerik.Reporting.Barcodes.PDF417Encoder()
encoder.Columns = 3
encoder.Rows = 3
encoder.Encoding = Telerik.Reporting.Barcodes.PDF417.EncodingMode.Auto
encoder.ErrorCorrectionLevel = 2
Me.barcode1.Encoder = encoder
Properties
Columns
Gets or sets the number of the columns.
Declaration
public int Columns { get; set; }
Property Value
System.Int32
|
Encoding
Gets or sets the encoding mode.
Declaration
public EncodingMode Encoding { get; set; }
Property Value
EncodingMode
|
ErrorCorrectionLevel
Gets or sets the error correction level.
Declaration
public int ErrorCorrectionLevel { get; set; }
Property Value
System.Int32
|
Rows
Gets or sets the number of the rows.
Declaration
public int Rows { get; set; }
Property Value
System.Int32
|