ActiveReports.Viewer3 Request technical support
Style Property
See Also  Example


Sets or returns the BorderLineStyle of the border.

Syntax

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

Return Value

DataDynamics.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

See Also