Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Handle the Intellisense wheel button being pushed.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function HandleWheelButtonDown ( _
hwnd As IntPtr, _
dwStyle As UInteger _
) As Integer
int HandleWheelButtonDown(
IntPtr hwnd,
uint dwStyle
)
int HandleWheelButtonDown(
[InAttribute] IntPtr hwnd,
[InAttribute] unsigned int dwStyle
)
abstract HandleWheelButtonDown :
hwnd:IntPtr *
dwStyle:uint32 -> int
function HandleWheelButtonDown(
hwnd : IntPtr,
dwStyle : uint
) : int
Parameters
- hwnd
Type: System.IntPtr
[in] The HWND of the active window.
- dwStyle
Type: System.UInt32
[in] Bit flags, such as WS_VSCROLL, indicating which scrollbar styles are used. Set to zero (0) for defaults.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsIntelliMouseHandler::HandleWheelButtonDown(
[in] HWND hwnd,
[in] DWORD dwStyle
);
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.