MouseCapabilities.VerticalWheelPresent Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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;
}