Mouse.WheelScrollLines 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
鼠标滚轮旋转一个单位时的滚动量。
public:
property int WheelScrollLines { int get(); };
public int WheelScrollLines { get; }
member this.WheelScrollLines : int
Public ReadOnly Property WheelScrollLines As Integer
属性值
一个 Integer
值,指示鼠标滚轮旋转一个单位时的滚动量。 正值表示按行数滚动,而负值表示一次滚动一个屏幕。
例外
鼠标没有滚轮。
示例
此示例确定鼠标是否具有滚轮,并使用 My.Computer.Mouse.WheelExists
属性确定旋转鼠标滚轮时滚动的量。
If My.Computer.Mouse.WheelExists Then
Dim lines As Integer = My.Computer.Mouse.WheelScrollLines
If lines > 0 Then
MsgBox("Application scrolls " &
lines & " line(s) for each wheel turn.")
Else
MsgBox("Application scrolls " &
(-lines) & " page(s) for each wheel turn.")
End If
Else
MsgBox("Mouse has no scroll wheel.")
End If
注解
可以使用此属性来确定在具有滚动条的多行控件中要向上或向下滚动的行数。
属性 My.Computer.Mouse.WheelScrollLines
提供与 MouseWheelScrollLines 属性类似的功能。
由于如果鼠标没有滚轮,此属性将引发异常,因此应通过检查 My.Computer.Mouse.WheelExists
属性来确保鼠标具有滚轮。
此属性提供有关运行代码的计算机的信息。
可用性(按项目类型)
项目类型 | 可用 |
---|---|
Windows 应用程序 | 是 |
类库 | 是 |
控制台应用程序 | 是 |
Windows 控件库 | 是 |
Web 控件库 | 否 |
Windows 服务 | 是 |
网站 | 否 |