Computer.Mouse 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得物件,提供用於取得本機電腦上安裝之滑鼠格式和組態資訊的屬性。
public:
property Microsoft::VisualBasic::Devices::Mouse ^ Mouse { Microsoft::VisualBasic::Devices::Mouse ^ get(); };
public Microsoft.VisualBasic.Devices.Mouse Mouse { get; }
member this.Mouse : Microsoft.VisualBasic.Devices.Mouse
Public ReadOnly Property Mouse As Mouse
屬性值
電腦的 My.Computer.Mouse
物件。
範例
本範例會使用 My.Computer.Mouse.WheelExists
和 My.Computer.Mouse.WheelScrollLines
屬性來判斷滑鼠是否有滾動輪,以及旋轉時捲動多少。
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
物件。 如需詳細資訊,請參閱 Mouse 物件。
此屬性僅適用於非伺服器應用程式。
依專案類型的可用性
專案類型 | 可用 |
---|---|
Windows Forms 應用程式 | 是 |
類別庫 | 是 |
主控台應用程式 | 是 |
Windows Form 控制項程式庫 | 是 |
Web 控制項程式庫 | 否 |
Windows 服務 | 是 |
網站 | 否 |