The VDividedBox container is a MX component. There is no Spark Component. The VDividedBox container is used for vertical layout in which the children components are arrange in vertical manner.
The VDividedBox container is a MX component. There is no Spark Component. The VDividedBox container is used for vertical layout in which the children components are arrange in vertical manner.The VDividedBox container is a MX component.
There is no Spark Component.
The VDividedBox container is used for vertical layout in which the children
components are arrange in vertical manner. It is similar to a VBox container,
except the VDividedBox container contains a divider between each child
component. You can use a mouse to move a divider for resize the component area.
The tag of VDividedBox Container is <mx:VDividedBox>.
<?xml version="1.0" encoding="utf-8"?> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600"> <fx:Script> <![CDATA[ private function grid_initialize():void { grid.dataProvider = [ {aName:'Bikrant', DOB:'01/01/1986', City:'Delhi', State:'NewDelhi'}, {aName:'Brijesh', DOB:'15/07/1984', City:'Noida', State:'Uttar Pradesh'}, {aName:'Gaurav', DOB:'27/06/1989', City:'Mumbai', State:'Maharashtra'} ]; } ]]> </fx:Script> <s:Panel title="VDividedBox Container Example" width="425" height="418"> <mx:VDividedBox x="10" y="10"> <mx:Tree id="tree" width="100%" height="100%" labelField="@label"> <fx:XMLList id="collegedata"> <node label="College"> <node label="History"/> <node label="About us"/> <node label="Courses"> <node label="B.Tech."> <node label="CS"/> <node label="EC"/> <node label="EI"/> <node label="IT"/> </node> <node label="MBA"> <node label="Finance"/> <node label="Marketing"/> <node label="HR"/> </node> <node label="MCA"/> <node label="B.Pharma."/> </node> <node label="Department"> <node label="Computer Science"/> <node label="Electronics"/> <node label="Managenent"/> </node> <node label="Feedback"/> <node label="Contact us"/> </node> </fx:XMLList> </mx:Tree> <mx:DataGrid id="grid" width="100%" height="100%" initialize="grid_initialize();"/> </mx:VDividedBox> </s:Panel> </s:Application> |
To view this page ensure that Adobe Flash Player version 10.0.0 or greater is installed.