⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ilayoutmode.as

📁 拓扑图基于SNMP数据采集模块的设计和实现
💻 AS
字号:
package com.yahoo.astra.layout.modes{	import flash.events.IEventDispatcher;	import flash.geom.Rectangle;		/**	 * Defines the properties and functions required	 * for layout modes used by ILayoutContainer.	 * 	 * @author Josh Tynjala	 */	public interface ILayoutMode extends IEventDispatcher	{			//--------------------------------------	//  Methods	//--------------------------------------			/**		 * The DisplayObjects in the input parameter will be positioned and sized		 * based on a specified rectangle. There is no requirement that the		 * display objects remain entirely within the rectangle.		 * 		 * <p>Returns the actual rectangular region in which the laid out		 * children will appear. This may be larger or smaller than the		 * suggested rectangle. This returned value is expected to be used by		 * container components to determine if scrollbars or other navigation		 * controls are needed.</p>		 * 		 * @param displayObjects	An Array of DisplayObjects to be laid out.		 * @param bounds			The rectangular region in which the display objects should be placed.		 * @return					The actual region in which the display objects are contained.		 */		function layoutObjects(displayObjects:Array, bounds:Rectangle):Rectangle;	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -