Search
MouseWheelAction Enumeration
See Also
 





Specifies the type of action performed when the user rotates the mouse wheel.

Namespace: MindFusion.Diagramming
File: Enum.js

 Syntax

JavaScript  Copy Code

// enum
MouseWheelAction = {}

 Members

  Member name Description

None

The control does not handle wheel rotation internally, but raises mouseWheel event to allow custom handling.

Scroll

Indicates that the mouse wheel should scroll the view.

Zoom

Indicates that the mouse wheel should zoom the view.

 Remarks

Members of this enumeration can be assigned to the mouseWheelAction property of DiagramView.

 See Also