MouseWheel Event

MouseWheel Event

Occurs when the mouse wheel moves while the InkCollector or InkOverlay object has focus.

Declaration

[C++]

void MouseWheel(
    [in] InkMouseButton Button,
    [in] InkShiftKeyModifierFlags Shift,
    [in] long Delta,
    [in] long x,
    [in] long y,
    [in, out] VARIANT_BOOL* Cancel
);

[Microsoft® Visual Basic® 6.0]

Public Event MouseWheel( _
    Button As InkMouseButton, _
    Shift As InkShiftKeyModifierFlags, _
    Delta As Long, _
    x As Long, _
    y As Long, _
    Cancel As Boolean _
)

Parameters

Button

[in] The mouse button that was pressed.

Shift

[in] The state of the SHIFT key.

Delta

[in] A signed count of the number of detents the mouse wheel has rotated. A detent is one notch of the mouse wheel.

x

[in] The x-coordinate, in pixels, of a mouse click.

y

[in] The y-coordinate, in pixels, of a mouse click.

Cancel

[in, out] Whether the event should be canceled for the parent control. The default value is FALSE, which specifies that the event should not be canceled.

Remarks

Note: The properties pX and pY are in pixels, and not the HIMETRIC units that are associated with the ink space. This is because this event replaces the related mouse event of a pen-unaware application and this type of application understands only pixels.

This event method is defined in the _IInkCollectorEvents, _IInkOverlayEvents, and _IInkPictureEvents dispatch-only interfaces (dispinterfaces) with an ID of DISPID_IPEMouseWheel.

Applies To