[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IBarcode.QuietZoneLeft

QuietZoneLeft Property

QuietZoneLeft

Returns the size of the left quiet zone.

This property returns the margin size to the left of the barcode symbol. If the left quiet zone is not specified, this property returns 0.

Declaration
int QuietZoneLeft { get; }
ReadOnly Property QuietZoneLeft As Integer
Examples
worksheet.Range["A1"].Formula = "=BC_QRCODE(\"https://www.example.com\",\"rgb(0, 0, 0)\",\"rgb(255, 255, 255)\",\"L\",2,\"auto\",\"auto\",FALSE,0,,\"UTF-8\",1,2,3,4)";
IBarcode barcode = (IBarcode) worksheet.Range["A1"].Value;
int quietZoneLeft = barcode.QuietZoneLeft;