Key.Normal (gb.qt4)
Static Property Read Normal As Boolean
指示无功能键被按下。
用于..._KeyPress或..._KeyRelease事件内部。
Examples
' 需要一个Button1;带有焦点(使用Tab键)。
' 可以剪切和粘贴该示例。
PUBLIC SUB Button1_KeyPress()
IF Key.Normal THEN
Button1.Text = " True " & CString(Time)
ELSE
Button1.Text = " False " & CString(Time)
ENDIF
END