Represents a so-called "cell" or "link" of the doubly linked list implementation YList<T>.
Inheritance Hierarchy
ListCell
Remarks
It may be used to perform fast access and remove operations on that type of list.
This class cannot be instantiated
Type Parameters
- T
Type Details
- yFiles module
- core
Properties
Gets the successor cell of this cell.
Remarks
If there is no successor, then
null
is returned.Gets the predecessor cell of this cell.
Remarks
If there is no predecessor, then
null
is returned.