Paket | mx.controls |
Sınıf | public final class ProgressBarMode |
Miras Alma | ProgressBarMode 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 |
mode
property
of the ProgressBar class.
İlgili API Öğeleri
Genel Sabitler
Sabit | Tanımlayan: | ||
---|---|---|---|
EVENT : String = "event" [statik]
The control specified by the source property must
dispatch progress and completed events. | ProgressBarMode | ||
MANUAL : String = "manual" [statik]
You manually update the ProgressBar status. | ProgressBarMode | ||
POLLED : String = "polled" [statik]
The source property must specify an object that
exposes the getBytesLoaded() and
getBytesTotal() methods. | ProgressBarMode |
Sabit Ayrıntısı
EVENT | Sabit |
public static const EVENT:String = "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 |
The control specified by the source
property must
dispatch progress
and completed
events.
The ProgressBar uses these events to update its status.
MANUAL | Sabit |
public static const MANUAL:String = "manual"
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 |
You manually update the ProgressBar status. In this mode, you
specify the maximum
and minimum
properties and use the setProgress()
method
to specify the status. This mode is often used when the
indeterminate
property is true
.
POLLED | Sabit |
public static const POLLED:String = "polled"
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 source
property must specify an object that
exposes the getBytesLoaded()
and
getBytesTotal()
methods. The ProgressBar control
calls these methods to update its status.
Tue Jun 12 2018, 01:09 PM Z