Unit 'Maps' Package
[Overview][Constants][Types][Classes][Procedures and functions][Index] [#lazutils]

TMapLink

Record type used to build the linked list for items in the map.

Declaration

Source position: maps.pp line 48

type TMapLink = record

  Previous: PMapItem;

  

Pointer to the previous item in the linked list for a map.

  Next: PMapItem;

  

Pointer to the Next item in the linked list for a map.

end;

Description

TMapLink is a record type with members that contain Pointers to the Previous and Next items in the linked list for the map. TMapLink is used to implement TMapItem.


Version 4.4 Generated 2025-11-08 Home