Mega Code Archive

 
Categories / Flex / Components
 

Create HRule and VRule controls using mx

and " src="http://www.rntsoft.com/Code/FlexImages/CreateHRuleandVRulecontrolsusingmxHRuleandmxVRule.PNG"         <?xml version="1.0"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">     <mx:VBox>         <mx:Label text="Above" />         <mx:HRule />         <mx:Label text="Below" />     </mx:VBox>     <mx:HBox>         <mx:Label text="Left" />         <mx:VRule />         <mx:Label text="Right" />     </mx:HBox> </mx:Application>