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

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

It describes the combination of modifiers to apply to displayed edges.

Visual Basic
Public Enum VSEdgeModifiers
  AlwaysOnTopFlag = &H40
  EdgeColorFlag = 8
  EdgeHaloGapFlag = &H10
  EdgeJitterFlag = 2
  EdgeOpacityFlag = &H80
  EdgeOverhangFlag = 1
  EdgeWidthFlag = 4
  None = 0
End Enum
C#
public enum VSEdgeModifiers {
  AlwaysOnTopFlag = 0x40,
  EdgeColorFlag = 8,
  EdgeHaloGapFlag = 0x10,
  EdgeJitterFlag = 2,
  EdgeOpacityFlag = 0x80,
  EdgeOverhangFlag = 1,
  EdgeWidthFlag = 4,
  None = 0
}
Members
Members 
Description 
AlwaysOnTopFlag = 0x40 
Force edges to be on top. Edges will not participate in the Z-ordering of the displayed drawables. 
EdgeColorFlag = 8 
Apply a color other than the drawable object color to the edges. 
EdgeHaloGapFlag = 0x10 
Apply a halo gap percentage to the edges of an object that is hidden by another object, such that the specified gap is displayed between the edges of the hidden object and the edges of the object which hides it. 
EdgeJitterFlag = 2 
Apply a jitter effect to the edges. The jitter effect is produced by drawing extra lines adjacent to the original line, with a specific amount of perturbation away from the original line. 
EdgeOpacityFlag = 0x80 
Apply an opacity value to the edges. If unset, edges are displayed with full opacity. If set, edges are displayed with a specified degree of opacity from completely opaque to completely transparent. 
EdgeOverhangFlag = 1 
Allow an edge to overhang its start and end points by a specified amount. 
EdgeWidthFlag = 4 
Apply a width > 1 to the edges. 
None = 0 
Apply no modifiers to the edges. 
   Comments?