[]
Gets the number of columns in the barcode.
Use this property to retrieve the column count of a PDF417 barcode.
int Columns { get; }
ReadOnly Property Columns As Integer
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;