System Information: MousePresent, MouseWheelPresent, MouseWheelScrollLines, Native MouseWheelSupport : SystemInformation « Development « VB.Net Tutorial
- VB.Net Tutorial
- Development
- SystemInformation
imports System.Windows.Forms
Public Class Tester
Public Shared Sub Main
Console.WriteLine(SystemInformation.MousePresent.ToString())
Console.WriteLine(SystemInformation.MouseWheelPresent.ToString())
Console.WriteLine(SystemInformation.MouseWheelScrollLines.ToString())
Console.WriteLine(SystemInformation.NativeMouseWheelSupport.ToString())
End Sub
End Class
True
True
3
True