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

In This Topic
    Style Property (Border)
    In This Topic
    Sets or returns the BorderLineStyle of the border.
    Syntax
    'Declaration
     
    Public Property Style As BorderLineStyle
    public BorderLineStyle Style {get; set;}

    Property Value

    GrapeCity.ActiveReports.BorderLineStyle enumeration.
    Example
    Private void PageHeader_Format(object sender, System.EventArgs eArgs)
    {
        this.TextBox1.Border.Style = BorderLineStyle.ThickDashDotDot;
    }
    Private Sub PageHeader_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles PageHeader.Format
        With Me.TextBox1.Border.Style = BorderLineStyle.ThickDashDotDot
        End With
    End Sub
    See Also

    Reference

    Border Class
    Border Members
    BorderLineStyle Enumeration