TileGroup Specification
Summary and Background
TileGroup is a Group that has a TileLayout set on it by default. It exposes the public properties of the TileLayout so they can be set directly on the TileGroup rather than through its layout property.
Usage Scenarios
The user wants to create a Group with a TileLayout in ActionScript by instantiating one object.
The user wants to create a Group with a TileLayout in MXML with a single tag.
Detailed Description
VGroup/HGroup are currently available as convenience containers that define VerticalLayout/HorizontalLayout as their default layout and Group is configured with a BasicLayout by default. Having TileGroup will mean that each layout provided in Flex 4 will have an equivalent Group:
Group - BasicLayout
VGroup - VerticalLayout
HGroup - HorizontalLayout
TileGroup - TileLayout
The layout property of a TileGroup/VGroup/HGroup can not be changed and attempting to do so will result in a runtime error.
API Description
B Features
None
Examples and Usage
Instead of defining a Group with a TileLayout and changing properties on the layout:
You can use a TileGroup and change the layout properties directly on the TileGroup:
Documentation
The majority of the documentation of TileGroup is copied from the TileLayout class using @copy.
|

|