[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IPDF417.Compact

Compact Property

Compact

Gets whether the barcode uses the compact PDF417 format.

The default value is false.

Declaration
bool Compact { get; }
ReadOnly Property Compact As Boolean
Examples
worksheet.Range["A1"].Value = "1234567890";
worksheet.Range["B1"].Formula = "=BC_PDF417(A1,\"rgb(0, 0, 0)\",\"rgb(255, 255, 255)\",\"auto\",\"auto\",\"auto\",TRUE,2,2,2,2)";
IPDF417 pdf417 = (IPDF417) worksheet.Range["B1"].Value;
bool compact = pdf417.Compact;