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

📄 ilayoutcontainer.as

📁 拓扑图基于SNMP数据采集模块的设计和实现
💻 AS
字号:
package com.yahoo.astra.layout{	import com.yahoo.astra.layout.modes.ILayoutMode;		import flash.display.DisplayObject;	import flash.events.IEventDispatcher;		/**	 * Defines properties and methods required for layout containers	 * to work with LayoutManager.	 * 	 * <p>Implementations must be a subclass of DisplayObjectContainer.</p>	 * 	 * @see LayoutManager	 * @see LayoutContainer	 * @see flash.display.DisplayObjectContainer	 * 	 * @author Josh Tynjala	 */	public interface ILayoutContainer extends IEventDispatcher	{			//--------------------------------------	//  Properties	//--------------------------------------			/**		 * The width of the content displayed by the layout container.		 */		function get contentWidth():Number;				/**		 * The height of the content displayed by the layout container.		 */		function get contentHeight():Number;					/**		 * The layout algorithm used to display children of the layout container.		 * 		 * @see modes/package-detail.html Available Layout Modes (com.yahoo.astra.layout.modes)		 */		function get layoutMode():ILayoutMode;				/**		 * @private		 */		function set layoutMode(value:ILayoutMode):void;			//--------------------------------------	//  Methods	//--------------------------------------				/**		 * Informs the layout container that it should update the layout of its		 * children.		 */		function invalidateLayout():void;				/**		 * Immediately updates the layout of the container's children.		 */		function validateLayout():void;	}}

⌨️ 快捷键说明

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