📄 iadvancedlayoutmode.as
字号:
package com.yahoo.astra.layout.modes{ import flash.display.DisplayObject; /** * Defines the methods required for layout modes that have * advanced configuration settings for individual children. * * @author Josh Tynjala */ public interface IAdvancedLayoutMode extends ILayoutMode { /** * Registers a specific display object with the layout algorithm. If certain * settings need to be specified for individual display objects, they * should be passed to the layout algorithm here. * * @param target The client to add * @param configuration An optional set of name-value pairs for the client's configuration. */ function addClient(target:DisplayObject, configuration:Object = null):void; /** * Unregisters a specific display object from the layout algorithm. * * @param target The client to remove */ function removeClient(target:DisplayObject):void; /** * Returns true if a display object has been registered as a client. * * @param The display object that may be registered */ function hasClient(target:DisplayObject):Boolean; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -