[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IBarcode.Color

Color Property

Color

Returns the barcode color.

This property returns the color used to render the barcode symbol. The default value is "rgb(0,0,0)".

Declaration
string Color { get; }
ReadOnly Property Color As String
Examples
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;