Bagikan melalui


Computer.Keyboard Properti

Definisi

Mendapatkan objek yang menyediakan properti untuk mengakses status keyboard saat ini, seperti tombol apa yang saat ini ditekan, dan menyediakan metode untuk mengirim penekanan tombol ke jendela aktif.

public:
 property Microsoft::VisualBasic::Devices::Keyboard ^ Keyboard { Microsoft::VisualBasic::Devices::Keyboard ^ get(); };
public Microsoft.VisualBasic.Devices.Keyboard Keyboard { get; }
member this.Keyboard : Microsoft.VisualBasic.Devices.Keyboard
Public ReadOnly Property Keyboard As Keyboard

Nilai Properti

Objek My.Computer.Keyboard untuk komputer.

Contoh

Contoh ini menggunakan My.Computer.Keyboard.CtrlKeyDown properti untuk menentukan apakah tombol CTRL komputer saat ini ditekan.

If My.Computer.Keyboard.CtrlKeyDown Then
    MsgBox("CTRL key down")
Else
    MsgBox("CTRL key up")
End If

Keterangan

Properti ini menyediakan akses mudah ke My.Computer.Keyboard objek. Untuk informasi selengkapnya, lihat Keyboard objek .

Ketersediaan menurut Jenis Proyek

Jenis proyek Tersedia
Aplikasi Formulir Windows Ya
Pustaka Kelas Ya
Aplikasi Konsol Ya
Pustaka Kontrol Formulir Windows Ya
Pustaka Kontrol Web Tidak
Layanan Windows Ya
Situs Web Tidak

Berlaku untuk

Lihat juga