UserInteractiveDeviceButton Enumeration |
LightningChart .NET Help
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.
Namespace:
Arction.WinForms.Charting
Assembly:
Arction.WinForms.Charting.LightningChart (in Arction.WinForms.Charting.LightningChart.dll) Version: 10.3.1
Syntax[FlagsAttribute]
public enum UserInteractiveDeviceButton
<FlagsAttribute>
Public Enumeration UserInteractiveDeviceButton
[FlagsAttribute]
public enum class UserInteractiveDeviceButton
Members|
| Member name | Value | Description |
|---|
| None | 0 |
No button related to event.
|
| Primary | 1 |
Primary button. Usually left with mouse.
|
| Secondary | 2 |
Secondary button. Usually right with mouse.
|
| Tertiary | 4 |
Tertiary button, not handled in chart so far, but could be given out.
|
| Other1 | 8 |
Some other button, not handled in chart so far, but could be given out.
|
| Other2 | 16 |
Some other button, not handled in chart so far, but could be given out.
|
| Barrel | 32 |
Barrel button (from pen/stylys).
|
| NotRecognized | 64 |
Button was not recognized. Should not happen.
|
See Also