[]
Gets or sets the style for all border lines.
public BorderLineStyle Style { get; set; }
Type | Description |
---|---|
BorderLineStyle | For a list of valid values, see here: BorderLineStyle |
Default value is None
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;