[]
Returns the barcode color.
This property returns the color used to render the barcode symbol. The default
value is "rgb(0,0,0)".
string Color { get; }
ReadOnly Property Color As String
worksheet.Range["A1"].Formula = "=BC_QRCODE(\"https://www.example.com\",\"rgb(255, 0, 0)\")";
IBarcode barcode = (IBarcode) worksheet.Range["A1"].Value;
string color = barcode.Color;