System Information: MousePresent, MouseWheelPresent, MouseWheelScrollLines, Native MouseWheelSupport : SystemInformation « Development « VB.Net Tutorial






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








7.28.SystemInformation
7.28.1.SystemInformation.PrimaryMonitorMaximizedWindowSize
7.28.2.System Information: DoubleClickSize, DoubleClickTime, MouseButtons, MouseButtonsSw apped
7.28.3.System Information: MousePresent, MouseWheelPresent, MouseWheelScrollLines, Native MouseWheelSupport