Skip to main content

ShapeLineDashing Enum

Lists values that specify the line dash type.

Namespace: DevExpress.Spreadsheet.Drawings

Assembly: DevExpress.Spreadsheet.v23.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

Declaration

public enum ShapeLineDashing

Members

Name Description Example
Solid

A solid line. The binary pattern is 1 (a continuous line).

SpreadsheetLineDashing_SolidLine

SystemDash

A line consisting of short dashes. The binary pattern is 1110 (three filled points and one space).

SpreadsheetLineDashing_SystemDash

SystemDot

A line consisting of dots with a short space between them. The binary pattern is 10 (one filled point and one space).

SpreadsheetLineDashing_SystemDot

SystemDashDot

A line consisting of a repeating short dash-dot pattern. The binary pattern is 111010 (three filled points - one space - one filled point - one space).

SpreadsheetLineDashing_SystemDashDot

SystemDashDotDot

A line consisting of a repeating short dash-dot-dot pattern. The binary pattern is 11101010 (three filled points - one space - one filled point - one space - one filled point - one space).

SpreadsheetLineDashing_SystemDashDotDot

Dot

A line consisting of dots. The binary pattern is 1000 (one filled point and three spaces).

SpreadsheetLineDashing_Dot

Dash

A line consisting of dashes. The binary pattern is 1111000 (four filled points and three spaces).

SpreadsheetLineDashing_Dash

DashDot

A line consisting of a repeating dash-dot pattern. The binary pattern is 11110001000 (four filled points - three spaces - one filled point - three spaces).

SpreadsheetLineDashing_DashDot

LongDash

A line consisting of long dashes. The binary pattern is 11111111000 (eight filled points and three spaces).

SpreadsheetLineDashing_LongDash

LongDashDot

A line consisting of a repeating long dash-dot pattern. The binary pattern is 111111110001000 (eight filled points - three spaces - one filled point - three spaces).

SpreadsheetLineDashing_LongDashDot

LongDashDotDot

A line consisting of a repeating long dash-dot-dot pattern. The binary pattern is 1111111100010001000 (eight filled points - three spaces - one filled point - three spaces - one filled point - three spaces).

SpreadsheetLineDashing_LongDashDotDot

Related API Members

The following properties accept/return ShapeLineDashing values:

Remarks

Each line style is accompanied by a binary pattern, where each 1 represents a line segment of the same length as the line width, and each 0 corresponds to a space of the same length as the line width.

See Also