Adobe Flex 2 Language Reference - collected by Jimbob | Back to MY RESOURCES


Packagemx.controls.listClasses
Classpublic class ListRowInfo
InheritanceListRowInfo Inheritance Object

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

See also

mx.controls.listClasses.ListBase.rowInfo


Public Properties
 PropertyDefined by
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
  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
 Inheritedprototype : Object
[static] A reference to the prototype object of a class or function object.
Object
  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
 Inherited
setPropertyIsEnumerable(name:String, isEnum:Boolean = true):void
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Returns the string representation of the specified object.
Object
 Inherited
Returns the primitive value of the specified object.
Object
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.





collected by Jimbob 2007.05