ActiveReports 19 .NET Edition
MESCIUS.ActiveReports Assembly / GrapeCity.ActiveReports.SectionReportModel Namespace / RichTextBox Class / BackColor Property
Example

In This Topic
BackColor Property (RichTextBox)
In This Topic
Gets or sets the control's background color or fill color.
Syntax
'Declaration
 
Public Property BackColor As Color
 

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