Description
This .NET enum wraps the AcGs.LinePattern ObjectARX enum. It represents line patterns whose displays are not affected by zoom level.
Visual Basic
Public Enum LinePattern DashDot = 3 Dashed = 1 DefaultLinePattern = 2 Dotted = 2 DoubleLongDash = 9 DoubleMediumDash = 8 DoubleShortDash = 7 LongDash = 6 LongDashDot = 14 LongDashDotDot = 13 LongDashShortDash = 12 MediumDash = 5 MediumDashDotShortDashDot = 15 MediumDashShortDashShortDash = 11 MediumLongDash = 10 ShortDash = 4 Solid = 0 SparseDot = &H10 End Enum
C#
public enum LinePattern { DashDot = 3, Dashed = 1, DefaultLinePattern = 2, Dotted = 2, DoubleLongDash = 9, DoubleMediumDash = 8, DoubleShortDash = 7, LongDash = 6, LongDashDot = 14, LongDashDotDot = 13, LongDashShortDash = 12, MediumDash = 5, MediumDashDotShortDashDot = 15, MediumDashShortDashShortDash = 11, MediumLongDash = 10, ShortDash = 4, Solid = 0, SparseDot = 0x10 }
Members
| Members | Description |
|---|---|
| DashDot = 3 | Dash dotted line. |
| Dashed = 1 | Dashed line. |
| DefaultLinePattern = 2 | Default line pattern. |
| Dotted = 2 | Dotted line. |
| DoubleLongDash = 9 | Double long dash line. |
| DoubleMediumDash = 8 | Double medium dash line. |
| DoubleShortDash = 7 | Double short dash line. |
| LongDash = 6 | Long dash line. |
| LongDashDot = 14 | Long dash dotted line. |
| LongDashDotDot = 13 | Long dash double dotted line. |
| LongDashShortDash = 12 | Long dash short dash line. |
| MediumDash = 5 | Medium dash line. |
| MediumDashDotShortDashDot = 15 | Medium dash dotted and short dash dotted line. |
| MediumDashShortDashShortDash = 11 | Medium dash double short dash line. |
| MediumLongDash = 10 | Medium long dash line. |
| ShortDash = 4 | Short dash line. |
| Solid = 0 | Solid line. |
| SparseDot = 0x10 | Sparse dotted line. |