Paket | mx.rpc.events |
Sınıf | public class HeaderEvent |
Miras Alma | HeaderEvent AbstractEvent MessageEvent Event Object |
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Genel Özellikler
Özellik | Tanımlayan: | ||
---|---|---|---|
bubbles : Boolean [salt okunur]
Bir olayın köpüren bir olay olup olmadığını belirtir. | Event | ||
cancelable : Boolean [salt okunur]
Olayla ilişkilendirilmiş davranışın önlenebilir olup olmadığını gösterir. | Event | ||
constructor : Object
Belirli bir nesne örneği için sınıf nesnesine veya yapıcı işlevine bir başvuru. | Object | ||
currentTarget : Object [salt okunur]
Bu Event nesnesini olay dinleyicisiyle etkin olarak işleyen nesne. | Event | ||
eventPhase : uint [salt okunur]
Olay akışındaki geçerli aşama. | Event | ||
header : Object [salt okunur]
Header that the RPC call returned in the response. | HeaderEvent | ||
message : IMessage
The Message associated with this event. | MessageEvent | ||
target : Object [salt okunur]
Olay hedefi. | Event | ||
token : mx.rpc:AsyncToken [salt okunur]
The token that represents the call to the method. | AbstractEvent | ||
type : String [salt okunur]
Olay türü. | Event |
Genel Yöntemler
Yöntem | Tanımlayan: | ||
---|---|---|---|
HeaderEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = true, header:Object = null, token:mx.rpc:AsyncToken = null, message:IMessage = null)
Creates a new HeaderEvent. | HeaderEvent | ||
[geçersiz kıl]
Clones the MessageEvent. | MessageEvent | ||
[statik]
Utility method to create a new HeaderEvent that doesn't bubble and is cancelable. | HeaderEvent | ||
Özel ActionScript 3.0 Event sınıfınızdaki toString() yöntemini uygulamak için bir yardımcı işlev. | Event | ||
Bir nesnenin belirli bir özelliğinin tanımlı olup olmadığını gösterir. | Object | ||
Olayda preventDefault() öğesinin çağrılmış olup olmadığını kontrol eder. | Event | ||
Object sınıfının bir örneğinin parametre olarak belirtilen nesnenin prototip zincirinde olup olmadığını gösterir. | Object | ||
Bir olayın varsayılan davranışını, bu yapılabiliyorsa iptal eder. | Event | ||
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 | ||
Olay akışında geçerli düğümdeki ve ondan sonra gelen düğümlerdeki olay dinleyicilerin işlenmesini engeller. | Event | ||
Olay akışında geçerli düğümden sonra gelen düğümlerdeki olay dinleyicilerin işlenmesini engeller. | Event | ||
Bu nesnenin, yerel ayara özel kurallara göre biçimlendirilmiş dize temsilini döndürür. | Object | ||
[geçersiz kıl]
Returns a string representation of the HeaderEvent. | HeaderEvent | ||
Belirtilen nesnenin temel değerini döndürür. | Object |
Genel Sabitler
Sabit | Tanımlayan: | ||
---|---|---|---|
HEADER : String = "header" [statik]
The HEADER event type. | HeaderEvent |
Özellik Ayrıntısı
header | özellik |
Yapıcı Ayrıntı
HeaderEvent | () | Yapıcı |
public function HeaderEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = true, header:Object = null, token:mx.rpc:AsyncToken = null, message:IMessage = null)
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Creates a new HeaderEvent.
Parametrelertype:String — The event type; indicates the action that caused the event.
| |
bubbles:Boolean (default = false ) — Specifies whether the event can bubble up the display list hierarchy.
| |
cancelable:Boolean (default = true ) — Specifies whether the behavior associated with the event can be prevented. The dfault is true , but the preventDefault() method has no effect.
| |
header:Object (default = null ) — Object that holds the header of the call.
| |
token:mx.rpc:AsyncToken (default = null ) — AsyncToken that represents the call to the method. Used in the asynchronous completion token pattern.
| |
message:IMessage (default = null ) — Source Message of the header.
|
Yöntem Ayrıntısı
createEvent | () | yöntem |
public static function createEvent(header:Object, token:mx.rpc:AsyncToken, message:IMessage):HeaderEvent
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Utility method to create a new HeaderEvent that doesn't bubble and is cancelable.
Parametreler
header:Object — Object that holds the header of the call.
| |
token:mx.rpc:AsyncToken — AsyncToken that represents the call to the method. Used in the asynchronous completion token pattern.
| |
message:IMessage — Source Message header.
|
HeaderEvent — Returns a new HeaderEvent that doesn't bubble and is cancelable.
|
toString | () | yöntem |
Sabit Ayrıntısı
HEADER | Sabit |
public static const HEADER:String = "header"
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
The HEADER event type.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
token | The token that represents the call to the method. Used in the asynchronous completion token pattern. |
cancelable | true, but the preventDefault() method has no effect. |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget . |
header | Header that the RPC call returns in the response. |
message | The Message associated with this event. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
Tue Jun 12 2018, 01:09 PM Z