Pacchetto | spark.components |
Classe | public final class ResizeMode |
Ereditarietà | ResizeMode ![]() |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4 |
Versioni runtime: | 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
.
Proprietà pubbliche
Metodi pubblici
Costanti pubbliche
Costante | Definito da | ||
---|---|---|---|
NO_SCALE : String = "noScale" [statico]
Resizes by changing the width and height. | ResizeMode | ||
SCALE : String = "scale" [statico]
Resizes by setting the scaleX
and scaleY properties. | ResizeMode |
Descrizione delle costanti
NO_SCALE | Costante |
public static const NO_SCALE:String = "noScale"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4 |
Versioni runtime: | 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 | Costante |
public static const SCALE:String = "scale"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4 |
Versioni runtime: | 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, 02:44 PM Z