property Links.Item (ID as Variant) as Link
Returns a specific Link of the Links collection, giving its identifier.

TypeDescription
ID as Variant A Long, String or Numeric expression that specifies the identifier of the link to be requested.
Link A Link object being requested.
Use the Item property to access a link giving its identifier. The ID property of the Link specifies the identifier of the link. The Count property specifies the number of links on the surface. Use the Add method to programmatically add new link to the surface. The Remove method removes a link from the surface. The Clear method clears all the links on the surface.

The following VB sample enumerates the links on the surface:

Dim l As Variant
For Each l In Surface1.Links
    Debug.Print l.ID
Next