[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IPDF417.Columns

Columns Property

Columns

Gets the number of columns in the barcode.

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

Declaration
int Columns { get; }
ReadOnly Property Columns As Integer
Examples
worksheet.Range["A1"].Value = "1234567890";
worksheet.Range["B1"].Formula = "=BC_PDF417(A1,\"rgb(0, 0, 0)\",\"rgb(255, 255, 255)\",\"auto\",\"auto\",6,FALSE,2,2,2,2)";
IPDF417 pdf417 = (IPDF417) worksheet.Range["B1"].Value;
int columns = pdf417.Columns;