Paket | mx.automation.events |
Sınıf | public class EventDetails |
Miras Alma | EventDetails Object |
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4 |
Çalışma Zamanı Sürümleri: | Flash Player 10, AIR 1.5 |
Genel Özellikler
Özellik | Tanımlayan: | ||
---|---|---|---|
constructor : Object
Belirli bir nesne örneği için sınıf nesnesine veya yapıcı işlevine bir başvuru. | Object | ||
eventType : String
Type of the event
| EventDetails | ||
handlerFunction : Function
Handler function that processes the event
| EventDetails | ||
priority : int
The priority level of the event listener. | EventDetails | ||
useCapture : Boolean
Determines whether the listener works in the capture phase or the target and bubbling phases. | EventDetails | ||
useWeekRef : Boolean
Determines whether the reference to the listener is strong or weak. | EventDetails |
Genel Yöntemler
Yöntem | Tanımlayan: | ||
---|---|---|---|
EventDetails(type:String, handler:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false)
Constructor
| EventDetails | ||
Bir nesnenin belirli bir özelliğinin tanımlı olup olmadığını gösterir. | Object | ||
Object sınıfının bir örneğinin parametre olarak belirtilen nesnenin prototip zincirinde olup olmadığını gösterir. | Object | ||
Belirtilen özelliğin bulunup bulunmadığını ve numaralandırılabilir olup olmadığını gösterir. | Object | ||
Dinamik bir özelliğin döngü işlemlerinde kullanılabilirliğini ayarlar. | Object | ||
Bu nesnenin, yerel ayara özel kurallara göre biçimlendirilmiş dize temsilini döndürür. | Object | ||
Belirtilen nesnenin dize olarak temsil edilen halini döndürür. | Object | ||
Belirtilen nesnenin temel değerini döndürür. | Object |
Özellik Ayrıntısı
eventType | özellik |
public var eventType:String
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4 |
Çalışma Zamanı Sürümleri: | Flash Player 10, AIR 1.5 |
Type of the event
handlerFunction | özellik |
public var handlerFunction:Function
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4 |
Çalışma Zamanı Sürümleri: | Flash Player 10, AIR 1.5 |
Handler function that processes the event
priority | özellik |
public var priority:int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4 |
Çalışma Zamanı Sürümleri: | Flash Player 10, AIR 1.5 |
The priority level of the event listener.
Varsayılan değer şudur 0.
useCapture | özellik |
public var useCapture:Boolean
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4 |
Çalışma Zamanı Sürümleri: | Flash Player 10, AIR 1.5 |
Determines whether the listener works in the capture phase or the target and bubbling phases.
Varsayılan değer şudur false.
useWeekRef | özellik |
public var useWeekRef:Boolean
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4 |
Çalışma Zamanı Sürümleri: | Flash Player 10, AIR 1.5 |
Determines whether the reference to the listener is strong or weak. strong reference (the default) prevents your listener from being garbage-collected. weak reference does not.
Varsayılan değer şudur false.
Yapıcı Ayrıntı
EventDetails | () | Yapıcı |
public function EventDetails(type:String, handler:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false)
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4 |
Çalışma Zamanı Sürümleri: | Flash Player 10, AIR 1.5 |
Constructor
Parametrelertype:String — The event type; indicates the action that caused the event.
| |
handler:Function — Handler function that processes the event.
| |
useCapture:Boolean (default = false ) — Determines whether the listener works in the capture phase or the target and bubbling phases.
| |
priority:int (default = 0 ) — The priority level of the event listener.
| |
useWeakReference:Boolean (default = false ) — Determines whether the reference to the listener is strong or weak.
strong reference (the default) prevents your listener from being garbage-collected.
weak reference does not.
|
Tue Jun 12 2018, 01:09 PM Z