[Overview][Classes][Index] |
Removes the specified list item from the doubly linked list.
Source position: lazlinkedlist.pas line 49
public procedure TLinkList.Delete( |
AnItem: TLinkListItem |
); |
AnItem |
|
Item removed from the traversal nodes in the list. |
Delete is a procedure used to remove the specified list item from the traversal nodes in the doubly linked list. No actions are performed in the method when AnItem is unassigned (contains Nil).
Delete calls Unbind to update the traversal node for the affected list items. The Prior and Next nodes in AnItem are set to Nil to remove the item from the node order. Delete decrements the value in the Count property.
|
Total number of items used in the doubly linked list. |
|
|
Contains a reference to the previous item in the doubly linked list. |
|
|
Contains a reference to the next item in the doubly linked list. |
Version 4.0 | Generated 2025-05-03 | Home |