Pacotemx.controls
Classepublic final class ProgressBarMode
HerançaProgressBarMode Inheritance Object

The ProgressBarMode class defines the values for the mode property of the ProgressBar class.

Ver também

mx.controls.ProgressBar


Propriedades Públicas
 PropriedadeDefinido Por
 Inheritedconstructor : Object
Uma referência ao objeto da classe ou função construtora para uma instância determinada de um objeto.
Object
 Inheritedprototype : Object
[static] Uma referência ao objeto protótipo de uma classe ou função de objeto.
Object
Métodos Públicos
 MétodoDefinido Por
 Inherited
Indica se um objeto tem uma propriedade específica definida.
Object
 Inherited
Indica se uma instância da classe Object está na corrente do protótipo do objeto determinado como parâmetro.
Object
 Inherited
Indica se a propriedade especificada existe e se é enumerável.
Object
 Inherited
Determina a disponibilidade de uma propriedade dinâmica para operações em loop.
Object
 Inherited
Retorna a representação em string de um objeto determinado.
Object
 Inherited
Retorna o valor primitivo de um objeto específico.
Object
Constantes Públicas
 ConstanteDefinido Por
  EVENT : String = "event"
[static] The control specified by the source property must dispatch progress and completed events.
ProgressBarMode
  MANUAL : String = "manual"
[static] You manually update the ProgressBar status.
ProgressBarMode
  POLLED : String = "polled"
[static] The source property must specify an object that exposes the getBytesLoaded() and getBytesTotal() methods.
ProgressBarMode
Detalhes da Constante
EVENTConstante
public static const EVENT:String = "event"

The control specified by the source property must dispatch progress and completed events. The ProgressBar uses these events to update its status.

MANUALConstante 
public static const MANUAL:String = "manual"

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.

POLLEDConstante 
public static const POLLED:String = "polled"

The source property must specify an object that exposes the getBytesLoaded() and getBytesTotal() methods. The ProgressBar control calls these methods to update its status.