Defines the value of the type property of a visibilitychange event object.
Zh
定义 visibilitychange 事件对象的 type 属性值。
静态WILL_RESIZE
WILL_RESIZE:string = "willResize"
En
Defines the value of the type property of a willResize event object.
Zh
定义 willResize 事件对象的 type 属性值。
访问器
altKey
getaltKey():boolean
返回 boolean
En
Indicates whether the Alt key is active (true) or inactive (false).
Zh
表示 Alt 键是处于活动状态 (true) 还是非活动状态 (false)。
charCode
getcharCode():string
返回 string
En
Contains the character code value of the key pressed or released. The character code value is for English keyboard.
Zh
包含按下或释放的键的字符代码值。字符代码值为英文键盘值。
ctrlKey
getctrlKey():boolean
返回 boolean
En
Indicates whether the Ctrl key is active (true) or inactive (false).
Zh
表示 Ctrl 键是处于活动状态 (true) 还是非活动状态 (false)。
key
getkey():string
返回 string
En
The event name.
Zh
事件名称。
keyCode
getkeyCode():number
返回 number
En
The event name index.
Zh
事件名称索引。
keyLocation
getkeyLocation():number
返回 number
En
Indicates the location of the key on the keyboard. This is useful for differentiating keys that appear more than once on the keyboard.
For example, you can use this property to distinguish between the left and right Shift keys: the value of KeyLocation.LEFT for the left Shift key and the value of KeyLocation.RIGHT for the right Shift key. Another example is distinguishing between a key pressed on the standard keyboard (KeyLocation.STANDARD) and the same key pressed on the numeric keypad (KeyLocation.NUM_PAD).
Prevents processing of all event listeners on the current node in the event flow after the current one.
This method does not affect any event listeners on the current node (currentTarget).
En
Event
is a collection of event types. Generally, when an event occurs, theEvent
object is passed as a parameter to the event listener.Zh
Event
是事件类型的集合。一般当发生事件时,Event
对象将作为参数传递给事件侦听器。