套件 | spark.layouts.supportClasses |
類別 | public class LayoutBase |
繼承 | LayoutBase OnDemandEventDispatcher Object |
子類別 | BasicLayout, ButtonBarHorizontalLayout, ConstraintLayout, HorizontalLayout, MosaicLayoutBase, TabbedViewNavigatorTabBarHorizontalLayout, TileLayout, VerticalLayout, ViewMenuLayout |
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
LayoutBase
or one of its subclasses.
At minimum, subclasses must implement the updateDisplayList()
method, which positions and sizes the target
GroupBase's elements, and
the measure()
method, which calculates the default
size of the target
.
Subclasses may override methods like getElementBoundsAboveScrollRect()
and getElementBoundsBelowScrollRect()
to customize the way
the target behaves when it's connected to scrollbars.
Subclasses that support virtualization must respect the
useVirtualLayout
property and should only retrieve
layout elements within the scrollRect (the value of
getScrollRect()
) using getVirtualElementAt()
from within updateDisplayList()
.
The <s:LayoutBase>
tag inherits all of the tag
attributes of its superclass and adds the following tag attributes:
<s:LayoutBase Properties clipAndEnableScrolling="false" dropIndicator="defined by the skin class" horizontalScrollPosition="0" target="null" typicalLayoutElement="null" useVirtualLayout="false" verticalScrollPosition="0" />
屬性 | 定義自 | ||
---|---|---|---|
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 | ||
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. | LayoutBase | ||
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 | ||
Called by the target after a layout element
has been added and before the target's size and display list are
validated. | LayoutBase | ||
This method must is called by the target after a layout element
has been removed and before the target's size and display list are
validated. | LayoutBase | ||
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 | ||
Sizes and positions the target's elements. | LayoutBase | ||
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 |
方法 | 定義自 | ||
---|---|---|---|
Calculates how much to scroll for the specified dropLocation
during a drag and drop gesture. | LayoutBase | ||
Returns the index where a new item should be inserted if
the user releases the mouse at the specified coordinates
while completing a drag and drop gesture. | LayoutBase | ||
Calculates the bounds for the drop indicator that provides visual feedback
to the user of where the items will be inserted at the end of a drag and drop
gesture. | LayoutBase | ||
Returns the bounds of the first layout element that either spans or
is above the scrollRect's top edge. | LayoutBase | ||
Returns the bounds of the first layout element that either spans or
is below the scrollRect's bottom edge. | LayoutBase | ||
Returns the bounds of the first layout element that either spans or
is to the left of the scrollRect's left edge. | LayoutBase | ||
Returns the bounds of the first layout element that either spans or
is to the right of the scrollRect's right edge. | LayoutBase | ||
Returns the bounds of the target's scroll rectangle in layout coordinates. | LayoutBase | ||
Called when the verticalScrollPosition or
horizontalScrollPosition properties change. | LayoutBase |
clipAndEnableScrolling | 屬性 |
clipAndEnableScrolling:Boolean
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
If true
, specifies to clip the children to the boundaries of the viewport.
If false
, the container children extend past the container boundaries,
regardless of the size specification of the component.
預設值為 false。
實作
public function get clipAndEnableScrolling():Boolean
public function set clipAndEnableScrolling(value:Boolean):void
dropIndicator | 屬性 |
dropIndicator:DisplayObject
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
The DisplayObject
that this layout uses for
the drop indicator during a drag-and-drop operation.
Typically you do not set this property directly,
but instead define a dropIndicator
skin part in the
skin class of the drop target.
The List control sets this property in response to a
DragEvent.DRAG_ENTER
event.
The List initializes this property with an
instance of its dropIndicator
skin part.
The List clears this property in response to a
DragEvent.DRAG_EXIT
event.
實作
public function get dropIndicator():DisplayObject
public function set dropIndicator(value:DisplayObject):void
horizontalScrollPosition | 屬性 |
horizontalScrollPosition:Number
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
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.
If clipAndEnableScrolling
is true
, setting this property
typically causes the viewport to be set to:
new Rectangle(horizontalScrollPosition, verticalScrollPosition, width, height)Implementations of this property must be Bindable and must generate events of type
propertyChange
.
預設值為 0。
此屬性可以做為資料繫結的來源。一旦修改此屬性,將傳送 propertyChange
事件。
實作
public function get horizontalScrollPosition():Number
public function set horizontalScrollPosition(value:Number):void
target | 屬性 |
target:GroupBase
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
The GroupBase container whose elements are measured, sized and positioned by this layout.
Subclasses may override the setter to perform target specific
actions. For example a 3D layout may set the target's
maintainProjectionCenter
property here.
預設值為 null。
實作
public function get target():GroupBase
public function set target(value:GroupBase):void
相關 API 元素
typicalLayoutElement | 屬性 |
typicalLayoutElement:ILayoutElement
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
Used by layouts when fixed row/column sizes are requested but a specific size isn't specified. Used by virtual layouts to estimate the size of layout elements that have not been scrolled into view.
This property references a component that Flex uses to define the height of all container children, as the following example shows:
<s:Group> <s:layout> <s:VerticalLayout variableRowHeight="false" typicalLayoutElement="{b3}"/> </s:layout> <s:Button id="b1" label="Button 1"/> <s:Button id="b2" label="Button 2"/> <s:Button id="b3" label="Button 3" fontSize="36"/> <s:Button id="b4" label="Button 4" fontSize="24"/> </s:Group>
If this property has not been set and the target is non-null then the target's first layout element is cached and returned.
The default value is the target's first layout element.
預設值為 null。
實作
public function get typicalLayoutElement():ILayoutElement
public function set typicalLayoutElement(value:ILayoutElement):void
相關 API 元素
useVirtualLayout | 屬性 |
useVirtualLayout:Boolean
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
A container can hold any number of children. However, each child requires an instance of an item renderer. If the container has many children, you might notice performance degradation as you add more children to the container.
Instead of creating an item renderer for each child, you can configure the container to use a virtual layout. With virtual layout, the container reuses item renderers so that it only creates item renderers for the currently visible children of the container. As a child is moved off the screen, possible by scrolling the container, a new child being scrolled onto the screen can reuse its item renderer.
To configure a container to use virtual layout, set the useVirtualLayout
property
to true
for the layout associated with the container.
Only DataGroup or SkinnableDataContainer with layout set to VerticalLayout,
HorizontalLayout, or TileLayout supports virtual layout.
Layout subclasses that do not support virtualization must prevent changing
this property.
Note: The BasicLayout class throws a run-time error if you set
useVirtualLayout
to true
.
When true
, layouts that support virtualization must use
the target.getVirtualElementAt()
method,
rather than getElementAt()
, and must only get the
elements they anticipate will be visible given the value of getScrollRect()
.
When true
, the layout class must be able to compute
the indices of the layout elements that overlap the scrollRect
in its
updateDisplayList()
method based exclusively on cached information, not
by getting layout elements and examining their bounds.
Typically virtual layouts update their cached information
in the updateDisplayList()
method,
based on the sizes and locations computed for the elements in view.
Similarly, in the measure()
method, virtual layouts should update the target's
measured size properties based on the typicalLayoutElement
and other
cached layout information, not by measuring elements.
Containers cooperate with layouts that have useVirtualLayout
= true
by
recycling item renderers that were previously constructed, but are no longer in use.
An item is considered to be no longer in use if its index is not
within the range of getVirtualElementAt()
indices requested during
the container's most recent updateDisplayList()
invocation.
預設值為 false。
實作
public function get useVirtualLayout():Boolean
public function set useVirtualLayout(value:Boolean):void
相關 API 元素
verticalScrollPosition | 屬性 |
verticalScrollPosition:Number
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
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.
If clipAndEnableScrolling
is true
, setting this property
typically causes the viewport to be set to:
new Rectangle(horizontalScrollPosition, verticalScrollPosition, width, height)Implementations of this property must be Bindable and must generate events of type
propertyChange
.
預設值為 0。
此屬性可以做為資料繫結的來源。一旦修改此屬性,將傳送 propertyChange
事件。
實作
public function get verticalScrollPosition():Number
public function set verticalScrollPosition(value:Number):void
LayoutBase | () | 建構函式 |
public function LayoutBase()
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
Constructor.
calculateDragScrollDelta | () | 方法 |
protected function calculateDragScrollDelta(dropLocation:DropLocation, elapsedTime:Number):Point
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
Calculates how much to scroll for the specified dropLocation
during a drag and drop gesture.
Called by the showDropIndicator()
method to calculate the scroll
during drag-scrolling.
參數
dropLocation:DropLocation — A valid DropLocation object previously obtained
by calling the calculateDropLocation() method.
| |
elapsedTime:Number — The duration, in milliseconds, since the drag scrolling start.
|
Point — How much to drag scroll, or null if drag-scrolling is not needed.
|
相關 API 元素
calculateDropIndex | () | 方法 |
protected function calculateDropIndex(x:Number, y:Number):int
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
Returns the index where a new item should be inserted if
the user releases the mouse at the specified coordinates
while completing a drag and drop gesture.
Called by the calculatedDropLocation()
method.
參數
x:Number — The x coordinate of the drag and drop gesture, in
local coordinates.
| |
y:Number — The y coordinate of the drag and drop gesture, in
the drop target's local coordinates.
|
int — The drop index or -1 if the drop operation is not available
at the specified coordinates.
|
相關 API 元素
calculateDropIndicatorBounds | () | 方法 |
protected function calculateDropIndicatorBounds(dropLocation:DropLocation):Rectangle
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
Calculates the bounds for the drop indicator that provides visual feedback
to the user of where the items will be inserted at the end of a drag and drop
gesture.
Called by the showDropIndicator()
method.
參數
dropLocation:DropLocation — A valid DropLocation object previously returned
by the calculateDropLocation() method.
|
Rectangle — The bounds for the drop indicator or null.
|
相關 API 元素
calculateDropLocation | () | 方法 |
public function calculateDropLocation(dragEvent:DragEvent):DropLocation
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
Calculates the drop location in the data provider of the drop target for
the specified dragEvent
.
參數
dragEvent:DragEvent — The drag event dispatched by the DragManager.
|
DropLocation — Returns the drop location for this event, or null if the drop
operation is not available.
|
相關 API 元素
clearVirtualLayoutCache | () | 方法 |
public function clearVirtualLayoutCache():void
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
When useVirtualLayout
is true
,
this method can be used by the layout target
to clear cached layout information when the target changes.
For example, when a DataGroup's dataProvider
or
itemRenderer
property changes, cached
elements sizes become invalid.
When the useVirtualLayout
property changes to false
,
this method is called automatically.
Subclasses that support useVirtualLayout
= true
must override this method.
elementAdded | () | 方法 |
public function elementAdded(index:int):void
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
Called by the target after a layout element has been added and before the target's size and display list are validated. Layouts that cache per element state, like virtual layouts, can override this method to update their cache.
If the target calls this method, it's only guaranteeing that a
a layout element will exist at the specified index at
updateDisplayList()
time, for example a DataGroup
with a virtual layout will call this method when an item is added
to the targets dataProvider
.
By default, this method does nothing.
參數
index:int — The index of the element that was added.
|
相關 API 元素
elementRemoved | () | 方法 |
public function elementRemoved(index:int):void
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
This method must is called by the target after a layout element has been removed and before the target's size and display list are validated. Layouts that cache per element state, like virtual layouts, can override this method to update their cache.
If the target calls this method, it's only guaranteeing that a
a layout element will no longer exist at the specified index at
updateDisplayList()
time.
For example, a DataGroup
with a virtual layout calls this method when an item is added to
the dataProvider
property.
By default, this method does nothing.
參數
index:int — The index of the element that was added.
|
相關 API 元素
getElementBounds | () | 方法 |
public function getElementBounds(index:int):Rectangle
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
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.
Layout subclasses that support useVirtualLayout=true
must
override this method to compute a potentially approximate value for
elements that are not in view.
參數
index:int — Index of the layout element.
|
Rectangle — The specified element's layout bounds.
|
相關 API 元素
getElementBoundsAboveScrollRect | () | 方法 |
protected function getElementBoundsAboveScrollRect(scrollRect:Rectangle):Rectangle
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
Returns the bounds of the first layout element that either spans or is above the scrollRect's top edge.
This is a convenience method that is used by the default
implementation of the getVerticalScrollPositionDelta()
method.
Subclasses that rely on the default implementation of
getVerticalScrollPositionDelta()
should override this method to
provide an accurate bounding rectangle that has valid top
and
bottom
properties.
By default this method returns a Rectangle with width=0, height=1,
whose top edge is one less than the top edge of the scrollRect
,
and left=0.
Subclasses should override this method to provide an accurate
bounding rectangle that has valid top
and
bottom
properties.
參數
scrollRect:Rectangle — The target's scrollRect.
|
Rectangle — The bounds of the first element that spans or is
above the scrollRect's top edge.
|
相關 API 元素
getElementBoundsBelowScrollRect | () | 方法 |
protected function getElementBoundsBelowScrollRect(scrollRect:Rectangle):Rectangle
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
Returns the bounds of the first layout element that either spans or is below the scrollRect's bottom edge.
This is a convenience method that is used by the default
implementation of the getVerticalScrollPositionDelta()
method.
Subclasses that rely on the default implementation of
getVerticalScrollPositionDelta()
should override this method to
provide an accurate bounding rectangle that has valid top
and
bottom
properties.
By default this method returns a Rectangle with width=0, height=1,
whose bottom edge is one more than the bottom edge of the scrollRect
,
and left=0.
參數
scrollRect:Rectangle — The target's scrollRect.
|
Rectangle — The bounds of the first element that spans or is
below the scrollRect's bottom edge.
|
相關 API 元素
getElementBoundsLeftOfScrollRect | () | 方法 |
protected function getElementBoundsLeftOfScrollRect(scrollRect:Rectangle):Rectangle
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
Returns the bounds of the first layout element that either spans or is to the left of the scrollRect's left edge.
This is a convenience method that is used by the default
implementation of the getHorizontalScrollPositionDelta()
method.
Subclasses that rely on the default implementation of
getHorizontalScrollPositionDelta()
should override this method to
provide an accurate bounding rectangle that has valid left
and
right
properties.
By default this method returns a Rectangle with width=1, height=0,
whose left edge is one less than the left edge of the scrollRect
,
and top=0.
參數
scrollRect:Rectangle — The target's scrollRect.
|
Rectangle — The bounds of the first element that spans or is to
the left of the scrollRect's left edge.
|
相關 API 元素
getElementBoundsRightOfScrollRect | () | 方法 |
protected function getElementBoundsRightOfScrollRect(scrollRect:Rectangle):Rectangle
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
Returns the bounds of the first layout element that either spans or is to the right of the scrollRect's right edge.
This is a convenience method that is used by the default
implementation of the getHorizontalScrollPositionDelta()
method.
Subclasses that rely on the default implementation of
getHorizontalScrollPositionDelta()
should override this method to
provide an accurate bounding rectangle that has valid left
and
right
properties.
By default this method returns a Rectangle with width=1, height=0,
whose right edge is one more than the right edge of the scrollRect
,
and top=0.
參數
scrollRect:Rectangle — The target's scrollRect.
|
Rectangle — The bounds of the first element that spans or is to
the right of the scrollRect's right edge.
|
相關 API 元素
getHorizontalScrollPositionDelta | () | 方法 |
public function getHorizontalScrollPositionDelta(navigationUnit:uint):Number
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
Returns the change to the horizontal scroll position to handle
different scrolling options.
These options are defined by the NavigationUnit class: END
, HOME
,
LEFT
, PAGE_LEFT
, PAGE_RIGHT
, and RIGHT
.
參數
navigationUnit:uint — Takes the following values:
The implementation calls |
Number — The change to the horizontal scroll position.
|
相關 API 元素
getNavigationDestinationIndex | () | 方法 |
public function getNavigationDestinationIndex(currentIndex:int, navigationUnit:uint, arrowKeysWrapFocus:Boolean):int
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
Delegation method that determines which item to navigate to based on the current item in focus and user input in terms of NavigationUnit. This method is used by subclasses of ListBase to handle keyboard navigation. ListBase maps user input to NavigationUnit constants.
Subclasses can override this method to compute other values that are based on the current index and key stroke encountered.
參數
currentIndex:int — The current index of the item with focus.
| |
navigationUnit:uint — The NavigationUnit constant that determines
which item to navigate to next.
| |
arrowKeysWrapFocus:Boolean — If true , using arrow keys to
navigate within the component wraps when it hits either end.
|
int — The index of the next item to jump to. Returns -1
when if the layout doesn't recognize the navigationUnit.
|
getScrollPositionDeltaToElement | () | 方法 |
public function getScrollPositionDeltaToElement(index:int):Point
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
Computes the verticalScrollPosition
and
horizontalScrollPosition
deltas needed to
scroll the element at the specified index into view.
This method attempts to minimize the change to verticalScrollPosition
and horizontalScrollPosition
.
If clipAndEnableScrolling
is true
and the element at the specified index is not
entirely visible relative to the target's scroll rectangle, then
return the delta to be added to horizontalScrollPosition
and
verticalScrollPosition
that scrolls the element completely
within the scroll rectangle's bounds.
參數
index:int — The index of the element to be scrolled into view.
|
Point — A Point that contains offsets to horizontalScrollPosition
and verticalScrollPosition that will scroll the specified
element into view, or null if no change is needed.
If the specified element is partially visible and larger than the
scroll rectangle, meaning it is already the only element visible, then
return null.
If the specified index is invalid, or target is null, then
return null.
If the element at the specified index is null or includeInLayout
false, then return null.
|
相關 API 元素
getScrollRect | () | 方法 |
protected function getScrollRect():Rectangle
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
Returns the bounds of the target's scroll rectangle in layout coordinates. Layout methods should not get the target's scroll rectangle directly.
傳回值Rectangle — The bounds of the target's scrollRect in layout coordinates, null
if target or clipAndEnableScrolling is false.
|
getVerticalScrollPositionDelta | () | 方法 |
public function getVerticalScrollPositionDelta(navigationUnit:uint):Number
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
Returns the change to the vertical scroll position to handle
different scrolling options.
These options are defined by the NavigationUnit class:
DOWN
, END
, HOME
,
PAGE_DOWN
, PAGE_UP
, and UP
.
參數
navigationUnit:uint — Takes the following values:
PAGE_UP The implementation calls |
Number — The change to the vertical scroll position.
|
相關 API 元素
hideDropIndicator | () | 方法 |
public function hideDropIndicator():void
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
Hides the previously shown drop indicator,
created by the showDropIndicator()
method,
removes it from the display list and also stops the drag scrolling.
相關 API 元素
measure | () | 方法 |
public function measure():void
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
Measures the target's default size based on its content, and optionally measures the target's default minimum size.
This is one of the methods that you must override when creating a
subclass of LayoutBase. The other method is updateDisplayList()
.
You do not call these methods directly. Flex calls this method as part
of a layout pass. A layout pass consists of three phases.
First, if the target's properties are invalid, the LayoutManager calls
the target's commitProperties
method.
Second, if the target's size is invalid, LayoutManager calls the target's
validateSize()
method. The target's validateSize()
will in turn call the layout's measure()
to calculate the
target's default size unless it was explicitly specified by both target's
explicitWidth
and explicitHeight
properties.
If the default size changes, Flex will invalidate the target's display list.
Last, if the target's display list is invalid, LayoutManager calls the target's
validateDisplayList
. The target's validateDisplayList
will in turn call the layout's updateDisplayList
method to
size and position the target's elements.
When implementing this method, you must set the target's
measuredWidth
and measuredHeight
properties
to define the target's default size. You may optionally set the
measuredMinWidth
and measuredMinHeight
properties to define the default minimum size.
A typical implementation iterates through the target's elements
and uses the methods defined by the ILayoutElement
to
accumulate the preferred and/or minimum sizes of the elements and then sets
the target's measuredWidth
, measuredHeight
,
measuredMinWidth
and measuredMinHeight
.
相關 API 元素
scrollPositionChanged | () | 方法 |
protected function scrollPositionChanged():void
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
Called when the verticalScrollPosition
or
horizontalScrollPosition
properties change.
The default implementation updates the target's scrollRect
property by
calling updateScrollRect()
.
Subclasses can override this method to compute other values that are
based on the current scrollPosition
or scrollRect
.
相關 API 元素
showDropIndicator | () | 方法 |
public function showDropIndicator(dropLocation:DropLocation):void
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
Sizes, positions and parents the drop indicator based on the specified
drop location. Use the calculateDropLocation()
method
to obtain the DropLocation object.
Starts/stops drag-scrolling when necessary conditions are met.
參數
dropLocation:DropLocation — Specifies the location where to show the drop indicator.
Drop location is obtained through the computeDropLocation() method.
|
相關 API 元素
updateDisplayList | () | 方法 |
public function updateDisplayList(width:Number, height:Number):void
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
Sizes and positions the target's elements.
This is one of the methods that you must override when creating a
subclass of LayoutBase. The other method is measure()
.
You do not call these methods directly. Flex calls this method as part
of a layout pass. A layout pass consists of three phases.
First, if the target's properties are invalid, the LayoutManager calls
the target's commitProperties
method.
Second, if the target's size is invalid, LayoutManager calls the target's
validateSize()
method. The target's validateSize()
will in turn call the layout's measure()
to calculate the
target's default size unless it was explicitly specified by both target's
explicitWidth
and explicitHeight
properties.
If the default size changes, Flex will invalidate the target's display list.
Last, if the target's display list is invalid, LayoutManager calls the target's
validateDisplayList
. The target's validateDisplayList
will in turn call the layout's updateDisplayList
method to
size and position the target's elements.
A typical implementation iterates through the target's elements
and uses the methods defined by the ILayoutElement
to
position and resize the elements. Then the layout must also calculate and set
the target's contentWidth
and contentHeight
properties to define the target's scrolling region.
參數
width:Number — Specifies the width of the target, in pixels,
in the targets's coordinates.
| |
height:Number — Specifies the height of the component, in pixels,
in the target's coordinates.
|
相關 API 元素
updateScrollRect | () | 方法 |
public function updateScrollRect(w:Number, h:Number):void
語言版本: | ActionScript 3.0 |
產品版本: | Flex 4 |
執行階段版本: | Flash Player 10, AIR 1.5 |
Called by the target at the end of its updateDisplayList
to have the layout update its scrollRect.
If clipAndEnableScrolling
is true
,
the default implementation sets the origin of the target's scrollRect
to verticalScrollPosition
, horizontalScrollPosition
.
It sets its size to the width
, height
parameters (the target's unscaled width and height).
If clipAndEnableScrolling
is false
,
the default implementation sets the scrollRect
to null.
參數
w:Number — The target's width.
| |
h:Number — The target's height.
|
相關 API 元素
Tue Jun 12 2018, 03:47 PM Z