MouseCapabilities.VerticalWheelPresent Property

Definition

Gets a value indicating whether any of the mice connected to the computer have a scroll wheel that rolls up and down (usually for vertical scrolling).

public:
 property int VerticalWheelPresent { int get(); };
int VerticalWheelPresent();
public int VerticalWheelPresent { get; }
var int32 = mouseCapabilities.verticalWheelPresent;
Public ReadOnly Property VerticalWheelPresent As Integer

Property Value

Int32

int

The number of vertical wheels detected. Typically 0 or 1.

Examples

The following code shows how to use this method.

function getMouseCapabilities() {
    var mouseCapabilities = new Windows.Devices.Input.MouseCapabilities();
    id("verticalWheelPresent").innerHTML = mouseCapabilities.VerticalWheelPresent;
}

Applies to

See also