ActiveReports.Viewer3 Request technical support
BackColor Property
See Also  Example


Gets or sets the background color of the viewer.

Syntax

Visual Basic (Declaration) 
Public Property BackColor As Color
Visual Basic (Usage)Copy Code
Dim instance As ReportViewerObject
Dim value As Color
 
instance.BackColor = value
 
value = instance.BackColor
C# 
public Color BackColor {get; set;}

Return Value

A System.Drawing.Color value that represents the color of the viewer's background. 

Example

C#Copy Code
arv.ReportViewer.BackColor = System.Drawing.Color.Purple;
Visual BasicCopy Code
arv.ReportViewer.BackColor = System.Drawing.Color.Purple

See Also