ActiveReports 13
BackColor Property (RichTextBox)
Example 

GrapeCity.ActiveReports Assembly > GrapeCity.ActiveReports.SectionReportModel Namespace > RichTextBox Class : BackColor Property
Gets or sets the control'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.rtbActiveReport.BackColor = System.Drawing.Color.DarkGoldenrod;
}
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
    Me.rtbActiveReport.BackColor = System.Drawing.Color.DarkGoldenrod
End Sub
See Also

Reference

RichTextBox Class
RichTextBox Members