[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IPDF417

IPDF417 Interface

Represents a PDF417 barcode.

PDF417 is a popular high-density, two-dimensional barcode symbology that can encode up to 1108 bytes of information. This barcode comprises a stacked set of small barcodes and can encode up to 35 alphanumeric characters and 2,710 numeric characters.

This interface exposes the PDF417-specific barcode settings and generated properties, such as the error correction level, row count, column count, and whether the barcode uses the compact PDF417 format.

Namespace: GrapeCity.Documents.Excel
Assembly: DS.Documents.Excel.dll
Syntax
public interface IPDF417 : IBarcode
Public Interface IPDF417
    Inherits IBarcode
Examples
worksheet.Range["A1"].Value = "1234567890";
worksheet.Range["B1"].Formula = "=BC_PDF417(A1,\"rgb(0, 0, 0)\",\"rgb(255, 255, 255)\",\"auto\",4,6,TRUE,2,2,2,2)";
IPDF417 pdf417 = (IPDF417) worksheet.Range["B1"].Value;
int rows = pdf417.Rows;

Properties

Name Description
Columns

Gets the number of columns in the barcode.

Use this property to retrieve the column count of a PDF417 barcode.

Compact

Gets whether the barcode uses the compact PDF417 format.

The default value is false.

ErrorCorrectionLevel

Gets the error correction level for the barcode.

This value corresponds to the error correction level specified for the PDF417 barcode.

Rows

Gets the row count for the barcode.

Returns the number of rows in the PDF417 barcode generated from the cell value or formula result.