Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Tests a Windows message to see if it is an Intellisense mouse wheel rotation message.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function IsMouseWheelRotationMessage ( _
msg As UInteger _
) As Integer
'Usage
Dim instance As IVsIntelliMouseHandler
Dim msg As UInteger
Dim returnValue As Integer
returnValue = instance.IsMouseWheelRotationMessage(msg)
int IsMouseWheelRotationMessage(
uint msg
)
int IsMouseWheelRotationMessage(
[InAttribute] unsigned int msg
)
abstract IsMouseWheelRotationMessage :
msg:uint32 -> int
function IsMouseWheelRotationMessage(
msg : uint
) : int
Parameters
- msg
Type: System.UInt32
[in] The Windows message to test.
Return Value
Type: System.Int32
If the message is an Intellisense mouse wheel rotation message, returns S_OK. Otherwise, returns S_FALSE.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsIntelliMouseHandler::IsMouseWheelRotationMessage(
[in] UINT msg
);
.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.
See Also
Reference
IVsIntelliMouseHandler Interface