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