Pacote | mx.controls |
Classe | public final class ProgressBarMode |
Herança | ProgressBarMode Object |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
mode
property
of the ProgressBar class.
Mais exemplos
Elementos da API relacionados
Propriedades públicas
Métodos públicos
Constantes públicas
Constante | Definido por | ||
---|---|---|---|
EVENT : String = "event" [estático]
The control specified by the source property must
dispatch progress and completed events. | ProgressBarMode | ||
MANUAL : String = "manual" [estático]
You manually update the ProgressBar status. | ProgressBarMode | ||
POLLED : String = "polled" [estático]
The source property must specify an object that
exposes the getBytesLoaded() and
getBytesTotal() methods. | ProgressBarMode |
Detalhes da constante
EVENT | Constante |
public static const EVENT:String = "event"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de 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 | Constante |
public static const MANUAL:String = "manual"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de 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 | Constante |
public static const POLLED:String = "polled"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de 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.
Wed Jun 13 2018, 11:10 AM Z