accordionheaderlocation.as

来自「flex的一些小例子」· AS 代码 · 共 33 行

AS
33
字号
package flexlib.containers.accordionClasses{	/**	 * Defines static constants to specify the header location for a VAccordion or HAccordion.	 * 	 * @see flexlib.containers.VAccordion	 * @see flexlib.containers.HAccordion	 */	public class AccordionHeaderLocation	{		/**		 * Only applicable for a VAccordion. Places the header above the content. This		 * is the normal Accordion functionality and is the default setting for a VAccordion.		 */		static public const ABOVE:String = "above";				/**		 * Only applicable for a VAccordion. Places the header below the content. 		 */		static public const BELOW:String = "below";				/**		 * Only applicable for a HAccordion. Places the header to the left of the content. 		 * This is the default setting for a HAccordion.		 */		static public const LEFT:String = "left";				/**		 * Only applicable for a HAccordion. Places the header to the right of the content.		 */		static public const RIGHT:String = "right";	}}

⌨️ 快捷键说明

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