RawMouseFlags (Enums)
Last changed: -68.144.53.254

.
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