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

Style Property (Border)
Gets or sets the style for all border lines.
Syntax
'Declaration
 
Public Property Style As BorderLineStyle
 

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