[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.Border.Style

Style Property

Style

Gets or sets the style for all border lines.

Declaration
public BorderLineStyle Style { get; set; }
Property Value
Type Description
BorderLineStyle

For a list of valid values, see here: BorderLineStyle

Remarks

Default value is None

Examples
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;