Enum SliderStyles
- Namespace
- Hymma.Solidworks.Addins
- Assembly
- Hymma.Solidworks.Addins.dll
Bitwise styles for PmpSlider
[Flags]
public enum SliderStyles
Fields
AutoTicks = 2If set, then tick marks are created based on BottomLeftTicks and TopRightTicks
BottomLeftTicks = 4If set, then tick marks appear at the bottom(horizontal) or left(vertical) of the slider
NoTicks = 0Slider is horizontal. Slider has not ticks. Your application is only notified when the user is done dragging the slider to move it.
NotifyWhileTracking = 16If set, then your application is notified when the user is dragging the slider, each time the value changes; if not set, then your application is not notified when the user is dragging the slider, only when the user is done dragging the slider; setting this bit allows your application to react immediately to changes, but it does generate many more callbacks, so it is less efficient
TopRightTicks = 8If set, then tick marks appear at the top (horizontal) or right (vertical) of the slider
Vertical = 1If set, then the slider is oriented vertically; if not set, then the slider is oriented horizontally