[Flags()] public enum WheelBehavior : System.Enum
[Flags()] public enum WheelBehavior : System.Enum
Member | Description |
---|---|
ControlZooms | When there is only a Control key modifier, mouse wheel events zoom in and out. |
None | When DiagramTool.WheelBehavior is "None", mouse wheel events are ignored. |
ScrollsVertically | When there is no modifier, mouse wheel events scroll the diagram up and down. |
ShiftScrollsHorizontally | When there is only a Shift key modifier, mouse wheel events scroll the diagram left and right. |
Standard | This combination of flags represents the default value for DiagramTool.WheelBehavior: ScrollsVertically, ControlZooms, and ShiftScrollsHorizontally. |
Zooms | When there is no modifier, mouse wheel events zoom in and out. |
These enumerated values can be combined as flags. However, when conflicting flags are combined, the behavior is undetermined. Flags conflict when they specify different behaviors for the same combination of modifiers: Control or Shift or Alt (or no modifiers at all).
At the current time, the only conflicting flags are for unmodified mouse wheel events: ScrollsVertically or Zooms.
System.Object
System.ValueType
System.Enum
Northwoods.GoXam.Tool.WheelBehavior