Paket | mx.events |
Sınıf | public class ToolTipEvent |
Miras Alma | ToolTipEvent 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 |
dispatchEvent()
method
of the object to which the tip applies to dispatch the event.
İlgili API Öğeleri
Ö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 | ||
target : Object [salt okunur]
Olay hedefi. | Event | ||
toolTip : mx.core:IToolTip
The ToolTip object to which this event applies. | ToolTipEvent | ||
type : String [salt okunur]
Olay türü. | Event |
Yöntem | Tanımlayan: | ||
---|---|---|---|
ToolTipEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, toolTip:mx.core:IToolTip = null)
Constructor. | ToolTipEvent | ||
Event alt sınıfının bir örneğini çoğaltır. | Event | ||
Ö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 | ||
Event nesnesinin tüm özelliklerini içeren bir dize döndürülür. | Event | ||
Belirtilen nesnenin temel değerini döndürür. | Object |
Sabit | Tanımlayan: | ||
---|---|---|---|
TOOL_TIP_CREATE : String = "toolTipCreate" [statik]
The ToolTipEvent.TOOL_TIP_CREATE constant defines the value of the
type property of the event object for a toolTipCreate event. | ToolTipEvent | ||
TOOL_TIP_END : String = "toolTipEnd" [statik]
The ToolTipEvent.TOOL_TIP_END constant defines the value of the
type property of the event object for a toolTipEnd event. | ToolTipEvent | ||
TOOL_TIP_HIDE : String = "toolTipHide" [statik]
The ToolTipEvent.TOOL_TIP_HIDE constant defines the value of the
type property of the event object for a toolTipHide event. | ToolTipEvent | ||
TOOL_TIP_SHOW : String = "toolTipShow" [statik]
The ToolTipEvent.TOOL_TIP_SHOW constant defines the value of the
type property of the event object for a toolTipShow event. | ToolTipEvent | ||
TOOL_TIP_SHOWN : String = "toolTipShown" [statik]
The ToolTipEvent.TOOL_TIP_SHOWN constant defines the value of the
type property of the event object for a toolTipShown event. | ToolTipEvent | ||
TOOL_TIP_START : String = "toolTipStart" [statik]
The ToolTipEvent.TOOL_TIP_START constant defines the value of the
type property of the event object for a toolTipStart event. | ToolTipEvent |
toolTip | özellik |
public var toolTip:mx.core:IToolTip
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 ToolTip object to which this event applies. This object is normally an instance of ToolTip object, but can be any UIComponent object.
ToolTipEvent | () | Yapıcı |
public function ToolTipEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, toolTip:mx.core:IToolTip = 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 |
Constructor.
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 = false ) — Specifies whether the behavior
associated with the event can be prevented.
| |
toolTip:mx.core:IToolTip (default = null ) — The ToolTip object to which this event applies.
|
TOOL_TIP_CREATE | Sabit |
public static const TOOL_TIP_CREATE:String = "toolTipCreate"
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 ToolTipEvent.TOOL_TIP_CREATE
constant defines the value of the
type
property of the event object for a toolTipCreate
event.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | false |
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 . |
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. |
tooltip | The ToolTip object to which this event applies. |
TOOL_TIP_END | Sabit |
public static const TOOL_TIP_END:String = "toolTipEnd"
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 ToolTipEvent.TOOL_TIP_END
constant defines the value of the
type
property of the event object for a toolTipEnd
event.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | false |
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 . |
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. |
tooltip | The ToolTip object to which this event applies. |
TOOL_TIP_HIDE | Sabit |
public static const TOOL_TIP_HIDE:String = "toolTipHide"
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 ToolTipEvent.TOOL_TIP_HIDE
constant defines the value of the
type
property of the event object for a toolTipHide
event.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | false |
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 . |
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. |
tooltip | The ToolTip object to which this event applies. |
TOOL_TIP_SHOW | Sabit |
public static const TOOL_TIP_SHOW:String = "toolTipShow"
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 ToolTipEvent.TOOL_TIP_SHOW
constant defines the value of the
type
property of the event object for a toolTipShow
event.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | false |
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 . |
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. |
tooltip | The ToolTip object to which this event applies. |
TOOL_TIP_SHOWN | Sabit |
public static const TOOL_TIP_SHOWN:String = "toolTipShown"
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 ToolTipEvent.TOOL_TIP_SHOWN
constant defines the value of the
type
property of the event object for a toolTipShown
event.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | false |
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 . |
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. |
tooltip | The ToolTip object to which this event applies. |
TOOL_TIP_START | Sabit |
public static const TOOL_TIP_START:String = "toolTipStart"
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 ToolTipEvent.TOOL_TIP_START
constant defines the value of the
type
property of the event object for a toolTipStart
event.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | false |
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 . |
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. |
tooltip | The ToolTip object to which this event applies. |
Tue Jun 12 2018, 01:09 PM Z