Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Enums, prefix the name with the module name and a period.
RawMouseFlags (Enums)
.
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.
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!