Paket | mx.events |
Sınıf | public class NumericStepperEvent |
Miras Alma | NumericStepperEvent ![]() ![]() |
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 |
İlgili API Öğeleri
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 | |
![]() | target : Object [salt okunur]
Olay hedefi. | Event | |
triggerEvent : Event
If the value is changed in response to a user action,
this property contains a value indicating the type of input action. | NumericStepperEvent | ||
![]() | type : String [salt okunur]
Olay türü. | Event | |
value : Number
The value of the NumericStepper control when the event was dispatched. | NumericStepperEvent |
Genel Yöntemler
Yöntem | Tanımlayan: | ||
---|---|---|---|
NumericStepperEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, value:Number = NaN, triggerEvent:Event = null)
Constructor. | NumericStepperEvent | ||
![]() |
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 |
Genel Sabitler
Sabit | Tanımlayan: | ||
---|---|---|---|
CHANGE : String = "change" [statik]
The NumericStepperEvent.CHANGE constant defines the value of the
type property of the event object for a change event. | NumericStepperEvent |
Özellik Ayrıntısı
triggerEvent | özellik |
public var triggerEvent:Event
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 |
If the value is changed in response to a user action,
this property contains a value indicating the type of input action.
The value is either InteractionInputType.MOUSE
or InteractionInputType.KEYBOARD
.
value | özellik |
public var value:Number
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 value of the NumericStepper control when the event was dispatched.
Yapıcı Ayrıntı
NumericStepperEvent | () | Yapıcı |
public function NumericStepperEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, value:Number = NaN, triggerEvent:Event = 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.
| |
value:Number (default = NaN ) — The value of the NumericStepper control when the event was dispatched.
| |
triggerEvent:Event (default = null ) — If the value changed in response to a user action, contains a value
indicating the type of input action, either InteractionInputType.MOUSE
or InteractionInputType.KEYBOARD .
|
Sabit Ayrıntısı
CHANGE | Sabit |
public static const CHANGE:String = "change"
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 NumericStepperEvent.CHANGE
constant defines the value of the
type
property of the event object for a change
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. |
value | The value of the NumericStepper control when the event was dispatched. |
Tue Jun 12 2018, 01:09 PM Z