ActiveReports Developer 7
BackColor Property
See Also  Example
GrapeCity.ActiveReports.v7 Assembly > GrapeCity.ActiveReports.SectionReportModel Namespace > Section Class : BackColor Property

Glossary Item Box

Gets or sets the background color of the section.

Syntax

Visual Basic (Declaration) 
Public Property BackColor As Color
C# 
public Color BackColor {get; set;}

Property Value

System.Drawing.Color value used to paint the section background. Default is Color.Transparent.

Example

C#Copy Code
private void detail_Format(object sender, System.EventArgs eArgs)
{
    this.Detail.BackColor = System.Drawing.Color.Transparent;
}
Visual BasicCopy Code
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
    Me.Detail.BackColor = System.Drawing.Color.Transparent
End Sub

See Also