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.
RawInputType (Enums)
.
C# Definition:
/// <summary>
/// Enumeration containing the type device the raw input is coming from.
/// </summary>
public enum RawInputType
{
/// <summary>
/// Mouse input.
/// </summary>
Mouse = 0,
/// <summary>
/// Another device that is not the keyboard or the mouse.
/// </summary>
Other = 3
HID = 2
}
VB Definition:
''' <summary>
''' Enumeration containing the type device the raw input is coming from.
''' </summary>
Public Enum RawInputType
''' <summary>
''' Mouse input.
''' </summary>
Mouse = 0