Description
Occurs when the mouse wheel is rotated on the control.
Syntax
[Visual Basic .NET] |
---|
Public Sub MouseWheel( _
ByVal Button As short, _
ByVal Shift As short, _
ByVal Delta As short, _
ByVal X As Integer, _
ByVal Y As Integer _
)
|
[Managed C++] |
---|
public: void MouseWheel(
short Button,
short Shift,
short Delta,
int X,
int Y
);
|
[Unmanaged C++] |
---|
public: HRESULT MouseWheel(
short Button,
short Shift,
short Delta,
OLE_XPOS_PIXELS X,
OLE_YPOS_PIXELS Y
);
|
[Python - STK API ] |
---|
def MouseWheel(self, Button:short, Shift:short, Delta:short, X:OLE_XPOS_PIXELS, Y:OLE_YPOS_PIXELS) -> None:
|
Parameters
See Also