Skip to main content
A newer version of this page is available. .

XlBordersBase.LeftLineStyle Property

Gets or sets the line style of the cell’s left border.

Namespace: DevExpress.Export.Xl

Assembly: DevExpress.Printing.v18.2.Core.dll

Declaration

public XlBorderLineStyle LeftLineStyle { get; set; }

Property Value

Type Description
XlBorderLineStyle

An XlBorderLineStyle enumeration member that specifies the line style of a border.

Available values:

Show 14 items
Name Description
None

Specifies that a border is not painted.

Thin

Specifies the thin solid border line.

BorderLineStyle_Thin

Medium

Specifies the medium solid border line.

BorderLineStyle_Medium

Dashed

Specifies the thin dashed border line.

BorderLineStyle_Dashed

Dotted

Specifies the thin dotted border line.

BorderLineStyle_Dotted

Thick

Specifies the thick solid border line.

BorderLineStyle_Thick

Double

Specifies the double border line.

BorderLineStyle_Double

Hair

Specifies the hair border line.

BorderLineStyle_Hair

MediumDashed

Specifies the medium dashed border line.

BorderLineStyle_MediumDashed

DashDot

Specifies the thin dash-dotted border line.

BorderLineStyle_DashDot

MediumDashDot

Specifies the medium dash-dotted border line.

BorderLineStyle_MediumDashDot

DashDotDot

Specifies the thin dash-dot-dotted border line.

BorderLineStyle_DashDotDot

MediumDashDotDot

Specifies the medium dash-dot-dotted border line.

BorderLineStyle_MediumDashDotDot

SlantDashDot

Specifies the medium slanted dash-dotted border line.

BorderLineStyle_SlantDashDot

Remarks

To set the color of a left border, use the XlBorder.LeftColor property. If you specify the LeftLineStyle for a border without setting it’s color, the automatic color will be used.

For more information on how to customize cell borders, refer to the How to: Add Cell Borders example.

See Also