Description

Deletes a Relationship object as specified by the given name or ID, from ER/Studio. PARAMETERS: Identifier (String or Integer).

Syntax

Public Sub Remove( _
   ByVal Identifier As Variant _
)

Parameters

  • Identifier

Example

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

'We want the relationship with 2 as the ID

ReID = 2

MyModel.Relationships.Remove(ReID)