Package | feathers.layout |
Interface | public interface ITrimmedVirtualLayout extends IVirtualLayout, ILayout, IFeathersEventDispatcher |
Implementors | HorizontalLayout, HorizontalSpinnerLayout, SlideShowLayout, VerticalLayout, VerticalSpinnerLayout |
Product Version : | Feathers 1.1.0 |
layout()
.
Property | Defined By | ||
---|---|---|---|
afterVirtualizedItemCount : int
Used internally by a component, such as List, to set the
number of virtualized items that appear after the items passed to
layout(). | ITrimmedVirtualLayout | ||
beforeVirtualizedItemCount : int
Used internally by a component, such as List, to set the
number of virtualized items that appear before the items passed to
layout(). | ITrimmedVirtualLayout | ||
requiresLayoutOnScroll : Boolean [read-only]
Determines if the container calls layout() when the
scroll position changes. | ILayout | ||
typicalItem : DisplayObject
Used internally by a component that supports layout virtualization,
such as List, to provide a display object with
dimensions that represent a "typical" item in the layout. | IVirtualLayout | ||
useVirtualLayout : Boolean
Determines if virtual layout should be used. | IVirtualLayout |
afterVirtualizedItemCount | property |
afterVirtualizedItemCount:int
Used internally by a component, such as List
, to set the
number of virtualized items that appear after the items passed to
layout()
. Allows the array of items to be smaller than
the full size. Does not work if the layout has variable item
dimensions.
This property is meant to be set by the List
or other
component that uses the virtual layout. If you're simply creating
a layout for a List
or another component, do not use
this property. It is meant for developers creating custom components
only.
public function get afterVirtualizedItemCount():int
public function set afterVirtualizedItemCount(value:int):void
beforeVirtualizedItemCount | property |
beforeVirtualizedItemCount:int
Used internally by a component, such as List
, to set the
number of virtualized items that appear before the items passed to
layout()
. Allows the array of items to be smaller than
the full size. Does not work if the layout has variable item
dimensions.
This property is meant to be set by the List
or other
component that uses the virtual layout. If you're simply creating
a layout for a List
or another component, do not use
this property. It is meant for developers creating custom components
only.
public function get beforeVirtualizedItemCount():int
public function set beforeVirtualizedItemCount(value:int):void