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

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

It describes the amount of jitter effect to apply to edges.

Visual Basic
Public Enum VSEdgeJitterAmount
  JitterHigh = 3
  JitterLow = 1
  JitterMedium = 2
End Enum
C#
public enum VSEdgeJitterAmount {
  JitterHigh = 3,
  JitterLow = 1,
  JitterMedium = 2
}
Members
Members 
Description 
JitterHigh = 3 
A large amount of perturbation will be applied to the edges. 
JitterLow = 1 
A small amount of perturbation will be applied to the edges. 
JitterMedium = 2 
A medium amount of perturbation will be applied to the edges. 
   Comments?