Description
This .NET class wraps the ObjectARX enum AcGiVisualStyleProperties::EdgeJitterAmount.
It describes the amount of jitter effect to apply to edges.
C#
public enum VSEdgeJitterAmount { JitterHigh = 3, JitterLow = 1, JitterMedium = 2 }
Visual Basic
Public Enum VSEdgeJitterAmount JitterHigh = 3 JitterLow = 1 JitterMedium = 2 End Enum
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. |