套件 | com.adobe.mosaic.layouts |
類別 | public class StackLayout |
繼承 | StackLayout BasicLayout LayoutBase OnDemandEventDispatcher Object |
實作 | ISelectable |
語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
執行階段版本: | AIR 2.6, Flash Player 10.2 |
StackLayout partially implements ISelectableList
so the layout may be
used as the dataProvider
for a ButtonBar
.
屬性 | 定義自 | ||
---|---|---|---|
clipAndEnableScrolling : Boolean
If true, specifies to clip the children to the boundaries of the viewport. | LayoutBase | ||
constructor : Object
類別物件的參照或是特定物件實體的建構函數。 | Object | ||
dropIndicator : DisplayObject
The DisplayObject that this layout uses for
the drop indicator during a drag-and-drop operation. | LayoutBase | ||
horizontalScrollPosition : Number
The x coordinate of the origin of the viewport in the component's coordinate system,
where the default value is (0,0) corresponding to the upper-left corner of the component. | LayoutBase | ||
layoutTarget : GroupBase [唯讀]
The Group for which the layout is working (arranging and sizing its children). | StackLayout | ||
selectedIndex : int
The index of the currently selected element of the group target. | StackLayout | ||
target : GroupBase
The GroupBase container whose elements are measured, sized and positioned
by this layout. | LayoutBase | ||
typicalLayoutElement : ILayoutElement
Used by layouts when fixed row/column sizes are requested but
a specific size isn't specified. | LayoutBase | ||
useVirtualLayout : Boolean
A container can hold any number of children. | LayoutBase | ||
verticalScrollPosition : Number
The y coordinate of the origin of the viewport in the component's coordinate system,
where the default value is (0,0) corresponding to the upper-left corner of the component. | LayoutBase |
方法 | 定義自 | ||
---|---|---|---|
Constructor
| StackLayout | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registers an event listener object with an EventDispatcher object so that the listener
receives notification of an event. | OnDemandEventDispatcher | ||
Calculates the drop location in the data provider of the drop target for
the specified dragEvent. | LayoutBase | ||
When useVirtualLayout is true,
this method can be used by the layout target
to clear cached layout information when the target changes. | LayoutBase | ||
Dispatches an event into the event flow. | OnDemandEventDispatcher | ||
[覆寫]
Intercepts the element being added and resizes it to take up the entire space of
the layout. | StackLayout | ||
[覆寫]
Removes the given element from the layout and adjusts the selectedIndex
if the element being removed as the currently selected element. | StackLayout | ||
Returns the specified element's layout bounds as a Rectangle or null
if the index is invalid, the corresponding element is null,
includeInLayout=false,
or if this layout's target property is null. | LayoutBase | ||
Returns the change to the horizontal scroll position to handle
different scrolling options. | LayoutBase | ||
getNavigationDestinationIndex(currentIndex:int, navigationUnit:uint, arrowKeysWrapFocus:Boolean):int
Delegation method that determines which item
to navigate to based on the current item in focus
and user input in terms of NavigationUnit. | LayoutBase | ||
Computes the verticalScrollPosition and
horizontalScrollPosition deltas needed to
scroll the element at the specified index into view. | LayoutBase | ||
Returns the change to the vertical scroll position to handle
different scrolling options. | LayoutBase | ||
Checks whether the EventDispatcher object has any listeners registered for a specific type
of event. | OnDemandEventDispatcher | ||
指出物件是否有已定義的指定屬性。 | Object | ||
Hides the previously shown drop indicator,
created by the showDropIndicator() method,
removes it from the display list and also stops the drag scrolling. | LayoutBase | ||
指出 Object 類別的實體是否位於指定為參數的物件原型鏈中。 | Object | ||
Measures the target's default size based on its content, and optionally
measures the target's default minimum size. | LayoutBase | ||
指出指定的屬性是否存在,以及是否可列舉。 | Object | ||
Removes a listener from the EventDispatcher object. | OnDemandEventDispatcher | ||
為迴圈作業設定動態屬性的可用性。 | Object | ||
Sizes, positions and parents the drop indicator based on the specified
drop location. | LayoutBase | ||
傳回代表此物件的字串,根據地區特定慣例進行格式化。 | Object | ||
會傳回指定之物件的字串形式。 | Object | ||
[覆寫]
Adjusts the display to show the currently selected item. | StackLayout | ||
Called by the target at the end of its updateDisplayList
to have the layout update its scrollRect. | LayoutBase | ||
會傳回指定之物件的基本值。 | Object | ||
Checks whether an event listener is registered with this EventDispatcher object or any of its ancestors for the specified event type. | OnDemandEventDispatcher |
layoutTarget | 屬性 |
layoutTarget:GroupBase
[唯讀] 語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
執行階段版本: | AIR 2.6, Flash Player 10.2 |
The Group for which the layout is working (arranging and sizing its children).
實作
public function get layoutTarget():GroupBase
selectedIndex | 屬性 |
selectedIndex:int
語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
執行階段版本: | AIR 2.6, Flash Player 10.2 |
The index of the currently selected element of the group target.
此屬性可以做為資料繫結的來源。一旦修改此屬性,將傳送 selectedIndexChanged
事件。
實作
public function get selectedIndex():int
public function set selectedIndex(value:int):void
StackLayout | () | 建構函式 |
public function StackLayout()
語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
執行階段版本: | AIR 2.6, Flash Player 10.2 |
Constructor
elementAdded | () | 方法 |
override public function elementAdded(index:int):void
語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
執行階段版本: | AIR 2.6, Flash Player 10.2 |
Intercepts the element being added and resizes it to take up the entire space of the layout. If the index matches the selectedIndex, the element is made visible as well.
參數
index:int — The index of the element being added.
|
elementRemoved | () | 方法 |
override public function elementRemoved(index:int):void
語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
執行階段版本: | AIR 2.6, Flash Player 10.2 |
Removes the given element from the layout and adjusts the selectedIndex if the element being removed as the currently selected element.
參數
index:int — The index of the element being removed.
|
updateDisplayList | () | 方法 |
override public function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void
語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
執行階段版本: | AIR 2.6, Flash Player 10.2 |
Adjusts the display to show the currently selected item.
參數
unscaledWidth:Number — The actual width of the target group.
| |
unscaledHeight:Number — The actual height of the target group.
|
Tue Jun 12 2018, 03:47 PM Z