Description

Returns a Relationship object as specified by the given name, GUID, or ID. PARAMETERS: Identifier (String or Integer).

Property Type

  • Read-only property

Syntax

Public Property Item( _
   ByVal Identifier As Variant _
) As Relationship

Parameters

  • Identifier

Example

Dim MyModel As Model
Dim MyRel As Relationship
Dim ReID As Integer

' Looking for the relationship with 2 as the ID

ReID = 2

Set MyRel = MyModel.Relationships.Item(ReID)