Share

Autodesk.AutoCAD.GraphicsInterface.VSEdgeStyles Enumeration

Description

This .NET class wraps the ObjectARX bitfield enum AcGiVisualStyleProperties::EdgeStyle.

It describes the combination of edge styles to display.

C#

public enum VSEdgeStyles {
  IntersectionFlag = 8,
  None = 0,
  ObscuredFlag = 4,
  SilhouetteFlag = 2,
  VisibleFlag = 1
}

Visual Basic

Public Enum VSEdgeStyles
  IntersectionFlag = 8
  None = 0
  ObscuredFlag = 4
  SilhouetteFlag = 2
  VisibleFlag = 1
End Enum

Members

Members Description
IntersectionFlag = 8 Intersection edges will be displayed. An intersection edges is that which is inferred from portions of different intersecting objects.
None = 0 No styles will be applied to the edges.
ObscuredFlag = 4 Obscured edges will be displayed. An obscured edge is that which would not be normally be visible when in a shaded view.
SilhouetteFlag = 2 Silhouette edges will be displayed. A silhouette edge is an edge connecting a back facing polygon with a front facing polygon.
VisibleFlag = 1 Visible edges will be displayed.

Was this information helpful?