HBox Layout Container

HBox layout container behaves like Box container with horizontal direction.

HBox Layout Container

HBox Layout Container

     

HBox layout container behaves like Box container with horizontal direction. This container lays its children components horizontally. You can see the code below, there are four image components within HBox container. The container sets them all horizontally.

<?xml version="1.0" encoding="utf-8"?>

<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">

<mx:HBox width="429" height="80" x="148.5" y="30">

<mx:Image width="100" height="76">

<mx:source>assets/images/Sunset.jpg</mx:source>

</mx:Image>

<mx:Image width="100" height="76">

<mx:source>assets/images/Blue hills.jpg</mx:source>

</mx:Image>

<mx:Image width="100" height="76">

<mx:source>assets/images/Water lilies.jpg</mx:source>

</mx:Image>

<mx:Image width="100" height="76">

<mx:source>assets/images/Winter.jpg</mx:source>

</mx:Image>

</mx:HBox>

</mx:Application>

Output:

Download the source code:

HboxLayoutContainer.zip