Key.Alt (gb.qt4)
Static Property Read Alt As Boolean
返回=ALT=键是否被按下。
用于..._KeyPress或..._KeyRelease事件内部。
按键可以有由操作系统或其他程序赋予的功能:可以关闭/... 用户程序/其他程序/系统。
Examples
' 需要一个Button1;带有焦点(使用Tab键)。
' 可以剪切和粘贴该示例。
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()
' 带功能键的KeyPress事件会经常通过这个Form事件。
DIM altSet AS Boolean
TRY altSet = Key.Alt
altSet = IIf( ERROR , FALSE, altSet)
IF altSet THEN
ME.Text = CString(Time) & " True: ALT建被按下"
ELSE
ME.Text = CString(Time) & " False: ALT键未被按下"
ENDIF
END
参见