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 服務 | 是 |
網站 | 否 |