Paket | spark.components |
Sınıf | public final class ResizeMode |
Miras Alma | ResizeMode Object |
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4 |
Çalışma Zamanı Sürümleri: | Flash Player 10, AIR 1.5 |
The component can change its own dimensions (width
and height
)
and re-layout its children appropriately (this is the default resize mode).
An alternative option for the component is to change its scale, in which case
the children don't need to change at all. This option is supported by Group
.
Sabit | Tanımlayan: | ||
---|---|---|---|
NO_SCALE : String = "noScale" [statik]
Resizes by changing the width and height. | ResizeMode | ||
SCALE : String = "scale" [statik]
Resizes by setting the scaleX
and scaleY properties. | ResizeMode |
NO_SCALE | Sabit |
public static const NO_SCALE:String = "noScale"
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4 |
Çalışma Zamanı Sürümleri: | Flash Player 10, AIR 1.5 |
Resizes by changing the width
and height
.
The component always sizes itself and then lays out its children at the actual size specified by the layout or the user.
SCALE | Sabit |
public static const SCALE:String = "scale"
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4 |
Çalışma Zamanı Sürümleri: | Flash Player 10, AIR 1.5 |
Resizes by setting the scaleX
and scaleY
properties.
The component always sizes itself and then lays out its children at its measured size. The scale is adjusted to match the specified size by the layout or the user.
Tue Jun 12 2018, 01:09 PM Z