패키지 | mx.core |
클래스 | public final class ContainerCreationPolicy |
상속 | ContainerCreationPolicy Object |
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
creationPolicy
property of the Container class.
관련 API 요소
상수 | 정의 주체 | ||
---|---|---|---|
ALL : String = "all" [정적]
Immediately create all descendants. | ContainerCreationPolicy | ||
AUTO : String = "auto" [정적]
Delay creating some or all descendants until they are needed. | ContainerCreationPolicy | ||
NONE : String = "none" [정적]
Do not create any children. | ContainerCreationPolicy | ||
QUEUED : String = "queued" [정적]
Add the container to a creation queue. | ContainerCreationPolicy |
ALL | 상수 |
public static const ALL:String = "all"
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Immediately create all descendants.
Avoid using this creationPolicy
because
it increases the startup time of your application.
There is usually no good reason to create components at startup
which the user cannot see.
If you are using this policy so that you can "push" data into
hidden components at startup, you should instead design your
application so that the data is stored in data variables
and components which are created later "pull" in this data,
via databinding or an initialize
handler.
AUTO | 상수 |
public static const AUTO:String = "auto"
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Delay creating some or all descendants until they are needed.
For example, if a navigator container such as a TabNavigator
has this creationPolicy
, it will immediately create
all of its children, plus the descendants of the initially
selected child.
However, it will wait to create the descendants of the other children
until the user navigates to them.
NONE | 상수 |
public static const NONE:String = "none"
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Do not create any children.
With this creationPolicy
, it is the developer's
responsibility to programmatically create the children
from the UIComponentDescriptors by calling
createComponentsFromDescriptors()
on the parent container.
QUEUED | 상수 |
public static const QUEUED:String = "queued"
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Add the container to a creation queue. Deprecated since Flex 4.0.
Tue Jun 12 2018, 03:17 PM Z