ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Document Assembly / GrapeCity.ActiveReports Namespace / Border Class / Style Property
Example

In This Topic
    Style Property (Border)
    In This Topic
    Gets or sets the style for all border lines.
    Syntax
    'Declaration
     
    Public Property Style As BorderLineStyle
    public BorderLineStyle Style {get; set;}

    Property Value

    For a list of valid values, see here: BorderLineStyle
    Remarks
    Default value is None
    Example
    border.Style = BorderLineStyle.Solid;
    BorderLineStyle edgeStyle;
    //All of the values below should be equal to the style solid.
    edgeStyle = border.RightStyle;
    edgeStyle = border.LeftStyle;
    edgeStyle = border.BottomStyle;
    edgeStyle = border.TopStyle;
    See Also