| |
7.28.3.System Information: MousePresent, MouseWheelPresent, MouseWheelScrollLines, Native MouseWheelSupport |
|
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 |
|