Key.Alt (gb.qt4)
Static Property Read Alt As Boolean
Restituisce se si preme il tasto
ALT
.
Questo è interno all'evento ..._KeyPress o ..._KeyRelease.
Ai tasti possono essere assegnate funzioni dal sistema operativo o da altri programmi; potresti chiudere/... il tuo programma/altri programmi/il sistema.
Esempio
' Serve un Button1; con il focus su di esso (Usa il tasto Tab).
' puoi copiare e incollare questo esempio.
PUBLIC SUB Button1_KeyPress()
IF Key.Alt THEN
Button1.Text = " True " & CString(Time)
ELSE
Button1.Text = " False " & CString(Time)
ENDIF
END
PUBLIC SUB Form_KeyPress()
' L'evento Alt KeyPress passa spesso per questo evento Form.
DIM altSet AS Boolean
TRY altSet = Key.Alt
altSet = IIf( ERROR , FALSE, altSet)
IF altSet THEN
ME.Text = CString(Time) & " True: Il tasto Alt viene tenuto premuto"
ELSE
ME.Text = CString(Time) & " False: Il tasto Alt non è stato premuto"
ENDIF
END
Vedi anche