패키지 | mx.controls |
클래스 | public final class ProgressBarMode |
상속 | ProgressBarMode Object |
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
mode
property
of the ProgressBar class.
기타 예제
관련 API 요소
공용 속성
공용 메서드
공용 상수
상수 | 정의 주체 | ||
---|---|---|---|
EVENT : String = "event" [정적]
The control specified by the source property must
dispatch progress and completed events. | ProgressBarMode | ||
MANUAL : String = "manual" [정적]
You manually update the ProgressBar status. | ProgressBarMode | ||
POLLED : String = "polled" [정적]
The source property must specify an object that
exposes the getBytesLoaded() and
getBytesTotal() methods. | ProgressBarMode |
상수 세부 정보
EVENT | 상수 |
public static const EVENT:String = "event"
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | 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 | 상수 |
public static const MANUAL:String = "manual"
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | 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 | 상수 |
public static const POLLED:String = "polled"
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | 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, 03:17 PM Z