ActiveReports 12
BackColor Property (Label)
Example 

GrapeCity.ActiveReports.v12 Assembly > GrapeCity.ActiveReports.SectionReportModel Namespace > Label Class : BackColor Property
Gets or sets the background color of the control area.
Syntax
'Declaration
 
Public Property BackColor As Color
public Color BackColor {get; set;}

Property Value

System.Drawing.Color.  The default value is Color.Transparent.
Example
private void detail_Format(object sender, System.EventArgs eArgs)
{
    this.label1.BackColor = System.Drawing.Color.BlanchedAlmond;
}
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
   Me.Label1.BackColor = System.Drawing.Color.BlanchedAlmond
End Sub
See Also

Reference

Label Class
Label Members
ActiveReports6~GrapeCity.ActiveReports.Label~ForeColor