Search
FlowChart.MouseWheelAction Property
See Also
 



Gets or sets what action to perform when users rotate the mouse wheel.

 Syntax

VB6  Copy Code

Public Property Get MouseWheelAction() As EMouseWheelAction
Public Property Let MouseWheelAction( _
    ByVal value As EMouseWheelAction _
)

C++  Copy Code

public:
EMouseWheelAction get_MouseWheelAction ()
void put_MouseWheelAction (
    EMouseWheelAction value
)

 Property Value

A member of the EMouseWheelAction enumeration. The default value is Scroll.

 Remarks

Users can scroll horizontally by holding down the Shift modifier key while rotating the mouse wheel. The Control modifier scrolls the view in larger amounts (half the viewport width or height depending on scroll direction).

 See Also