[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IPDF417.Rows

Rows Property

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.

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