Packagemx.controls.listClasses
Classpublic class ListRowInfo

Used by the list-based classes to store information about their IListItemRenderers.

See also

mx.controls.listClasses.ListBase.rowInfo


Public Properties
 PropertyDefined by
  data : Object
The item in the dataprovider.
ListRowInfo
  height : Number
The height of the row including margins.
ListRowInfo
  itemOldY : Number
The last Y value for the renderer.
ListRowInfo
  oldY : Number
The last Y value for the row.
ListRowInfo
  uid : String
The unique identifier of the item in the dataProvider
ListRowInfo
  y : Number
The y-position value for the row.
ListRowInfo
Public Methods
 MethodDefined by
  
ListRowInfo(y:Number, height:Number, uid:String, data:Object = null)
Constructor.
ListRowInfo
Property detail
dataproperty
public var data:Object

The item in the dataprovider.

heightproperty 
public var height:Number

The height of the row including margins.

itemOldYproperty 
public var itemOldY:Number

The last Y value for the renderer. Used in Tree's open/close effects.

oldYproperty 
public var oldY:Number

The last Y value for the row. Used in Tree's open/close effects.

uidproperty 
public var uid:String

The unique identifier of the item in the dataProvider

yproperty 
public var y:Number

The y-position value for the row.

Constructor detail
ListRowInfo()constructor
public function ListRowInfo(y:Number, height:Number, uid:String, data:Object = null)

Constructor.

Parameters
y:Number — The y-position value for the row.
 
height:Number — The height of the row including margins.
 
uid:String — The unique identifier of the item in the dataProvider
 
data:Object (default = null) — The item in the dataprovider.