ActiveReports Developer 7
Color Property
See Also  Example
GrapeCity.ActiveReports.Document.v7 Assembly > GrapeCity.ActiveReports Namespace > Border Class : Color Property

Glossary Item Box

Sets or returns the color of a control's border.

Syntax

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

Property Value

System.Drawing.Color.

Example

C#Copy Code
Private void GroupHeader1_Format(object sender, System.EventArgs eArgs)
{
    this.txtShipCountry.Border.Color = System.Drawing.Color.Purple;
}
Visual BasicCopy Code
Private Sub GroupHeader1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles GroupHeader1.Format
    Me.txtShipCountry.Border.Color = System.Drawing.Color.Purple
End Sub

See Also