| Package | com.yworks.support |
| Class | public class ListCell |
| Inheritance | ListCell Object |
YList
See also
| Property | Defined By | ||
|---|---|---|---|
| info : Object
Gets or sets the element of this cell. | ListCell | ||
| next : ListCell [read-only]
Returns the successor cell of this cell. | ListCell | ||
| previous : ListCell [read-only]
Returns the predeccessor cell of this cell. | ListCell | ||
| Method | Defined By | ||
|---|---|---|---|
ListCell(o:Object)
Creates a new instance with the given object as content. | ListCell | ||
| info | property |
info:ObjectGets or sets the element of this cell.
public function get info():Object public function set info(value:Object):void| next | property |
next:ListCell [read-only] Returns the successor cell of this cell.
If there is no successor then null is returned.
public function get next():ListCell| previous | property |
previous:ListCell [read-only] Returns the predeccessor cell of this cell.
If there is no predecessor then null is returned.
public function get previous():ListCell| ListCell | () | Constructor |
public function ListCell(o:Object)Creates a new instance with the given object as content.
Parameterso:Object — The object to contain in the info property.
|