Autodesk.AutoCAD.GraphicsInterface Namespace > VSEdgeLinePattern Enumeration
Autodesk.AutoCAD.GraphicsInterface.VSEdgeLinePattern Enumeration   
Description

This .NET class wraps the ObjectARX enum AcGiVisualStyleProperties::EdgeLinePattern

It describes the raster-based line patterns to apply to edges.

Visual Basic
Public Enum VSEdgeLinePattern
  Dashed = 2
  Dotted = 3
  DoubleLongDash = 9
  DoubleMediumDash = 8
  DoubleShortDash = 7
  LongDash = 6
  MediumDash = 5
  MediumLongDash = 10
  ShortDash = 4
  Solid = 1
  SparseDot = 11
End Enum
C#
public enum VSEdgeLinePattern {
  Dashed = 2,
  Dotted = 3,
  DoubleLongDash = 9,
  DoubleMediumDash = 8,
  DoubleShortDash = 7,
  LongDash = 6,
  MediumDash = 5,
  MediumLongDash = 10,
  ShortDash = 4,
  Solid = 1,
  SparseDot = 11
}
Members
Members 
Description 
Dashed = 2 
Display edges with a dashed line pattern. 
Dotted = 3 
Display edges with a dotted line pattern. 
DoubleLongDash = 9 
Display edges with a double long dashed line pattern. 
DoubleMediumDash = 8 
Display edges with a double medium dashed line pattern. 
DoubleShortDash = 7 
Display edges with a double short dashed line pattern. 
LongDash = 6 
Display edges with a long dashed line pattern. 
MediumDash = 5 
Display edges with a medium dashed line pattern. 
MediumLongDash = 10 
Display edges with a medium long dashed line pattern. 
ShortDash = 4 
Display edges with a short dashed line pattern. 
Solid = 1 
Display edges with a solid line pattern. 
SparseDot = 11 
Display edges with a sparse dotted line pattern. 
   Comments?