ActiveReports 18 .NET Edition
MESCIUS.ActiveReports Assembly / GrapeCity.ActiveReports.SectionReportModel Namespace / ReportInfo Class / BackColor Property
Example

In This Topic
    BackColor Property (ReportInfo)
    In This Topic
    Gets or sets the control's background color or fill color.
    Syntax
    'Declaration
     
    Public Property BackColor As Color
    public Color BackColor {get; set;}
    Example
    private void detail_Format(object sender, System.EventArgs e)
    {
        this.reportInfo1.BackColor = Color.Coral;
    }
    Private Sub Detail1_Format(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Detail1.Format
       Me.ReportInfo1.BackColor = Color.Coral
    End Sub
    See Also