Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

RawMouseFlags (Enums)
 
.
Summary
Flags for use with the RAWINPUTMOUSE structure.

C# Definition:

    /// <summary>
    /// Enumeration containing the flags for raw mouse data.
    /// </summary>
    [Flags()]
    public enum RawMouseFlags
        : ushort
    {
        /// <summary>Relative to the last position.</summary>
        MoveRelative = 0,
        /// <summary>Absolute positioning.</summary>
        MoveAbsolute = 1,
        /// <summary>Coordinate data is mapped to a virtual desktop.</summary>
        VirtualDesktop = 2,
        /// <summary>Attributes for the mouse have changed.</summary>
        AttributesChanged = 4
    }

VB Definition:

    ''' <summary>
    ''' Enumeration containing the flags for raw mouse data.
    ''' </summary>
    <Flags()> _
    Public Enum RawMouseFlags
        'TODO WHAT IS THIS  : ushort
        ''' <summary>Relative to the last position.</summary>
        MoveRelative = 0
        ''' <summary>Absolute positioning.</summary>
        MoveAbsolute = 1
        ''' <summary>Coordinate data is mapped to a virtual desktop.</summary>
        VirtualDesktop = 2
        ''' <summary>Attributes for the mouse have changed.</summary>
        AttributesChanged = 4
    End Enum

Notes:

None.

Documentation
 

Please edit this page!

Do you have...

  • helpful tips?
  • corrections to the existing content?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it!

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions