ActiveReports 8
Style Property
See Also  Example
GrapeCity.ActiveReports.Document.v8 Assembly > GrapeCity.ActiveReports Namespace > Border Class : Style Property

Glossary Item Box

Sets or returns the BorderLineStyle of the border.

Syntax

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

Property Value

GrapeCity.ActiveReports.BorderLineStyle enumeration.

Example

C#Copy Code
Private void PageHeader_Format(object sender, System.EventArgs eArgs)
{
    this.TextBox1.Border.Style = BorderLineStyle.ThickDashDotDot;
}
Visual BasicCopy Code
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

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

Border Class
Border Members
BorderLineStyle Enumeration