ActiveReports 14 .NET Edition
GrapeCity.ActiveReports.Document Assembly / GrapeCity.ActiveReports Namespace / Border Class / Color Property
Example

In This Topic
    Color Property (Border)
    In This Topic
    Sets or returns the color of a control's border.
    Syntax
    'Declaration
     
    Public Property Color As Color
    public Color Color {get; set;}

    Property Value

    System.Drawing.Color.
    Example
    Private void GroupHeader1_Format(object sender, System.EventArgs eArgs)
    {
        this.txtShipCountry.Border.Color = System.Drawing.Color.Purple;
    }
    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