Pacchetto | mx.controls |
Classe | public final class ProgressBarMode |
Ereditarietà | ProgressBarMode Object |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
mode
property
of the ProgressBar class.
Altri esempi
Elementi API correlati
Proprietà pubbliche
Metodi pubblici
Costanti pubbliche
Costante | Definito da | ||
---|---|---|---|
EVENT : String = "event" [statico]
The control specified by the source property must
dispatch progress and completed events. | ProgressBarMode | ||
MANUAL : String = "manual" [statico]
You manually update the ProgressBar status. | ProgressBarMode | ||
POLLED : String = "polled" [statico]
The source property must specify an object that
exposes the getBytesLoaded() and
getBytesTotal() methods. | ProgressBarMode |
Descrizione delle costanti
EVENT | Costante |
public static const EVENT:String = "event"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | 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 | Costante |
public static const MANUAL:String = "manual"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | 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 | Costante |
public static const POLLED:String = "polled"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | 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, 02:44 PM Z