ActiveReports 14 .NET Edition
GrapeCity.ActiveReports Assembly / GrapeCity.ActiveReports.SectionReportModel Namespace / Barcode Class / BackColor Property
Example

In This Topic
    BackColor Property (Barcode)
    In This Topic
    Gets or sets the barcode's background color or fill color.
    Syntax
    'Declaration
     
    Public Property BackColor As Color
    public Color BackColor {get; set;}

    Property Value

    System.Drawing.Color
    Example
    private void detail_Format(object sender, System.EventArgs eArgs)
    {
        this.barcode1.BackColor = System.Drawing.Color.White;
    }
    Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
        Me.Barcode1.BackColor = System.Drawing.Color.White
    End Sub
    See Also