Enum UserInteractiveDeviceButton
- Namespace
- LightningChartLib.WinForms.Charting
- Assembly
- LightningChart.WinForms.Charting.NET4.dll
Button related to user action. E.g. with mouse. Pen could have many buttons, touch not, which would be using None or Primary. Event would describe the action in touch case.
[Flags]
public enum UserInteractiveDeviceButton
Fields
Barrel = 32Barrel button (from pen/stylus).
None = 0No button related to event.
NotRecognized = 64Button was not recognized. Should not happen.
Other1 = 8Some other button, not handled in chart so far, but could be given out.
Other2 = 16Some other button, not handled in chart so far, but could be given out.
Primary = 1Primary button. Usually left with mouse.
Secondary = 2Secondary button. Usually right with mouse.
Tertiary = 4Tertiary button, not handled in chart so far, but could be given out.