GoXam for WPF v3
WheelBehavior Enumeration
Northwoods.GoXam.Tool Namespace : WheelBehavior Enumeration
This enumeration controls the behavior of the mouse wheel by DiagramTool.StandardMouseWheel.
Syntax
[Flags()]
public enum WheelBehavior : System.Enum 
Members
MemberDescription
ControlZooms When there is only a Control key modifier, mouse wheel events zoom in and out.
NoneWhen 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.
StandardThis 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.
Remarks

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.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Northwoods.GoXam.Tool.WheelBehavior

See Also

Reference

Northwoods.GoXam.Tool Namespace