Share via


Link Object

Outlook Developer Reference

Represents an item that is linked to another Outlook item.

Remarks

Each item has a Links object associated with it that represents all the items that have been linked to the item.

Bb219952.vs_note(en-us,office.12).gif  Note
For Outlook 2000 and later, only contacts can be linked to other items.

Use the Item method to retrieve the Link object from a Links object. Because the Name property is the default property of the Link object, you can identify the linked item by name.

Example

The following example retrieves a Link object by name.

Visual Basic for Applications
  Set myLink = myLinks.Item("Microsoft Corporation")

See Also