Description

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

Syntax

Public Function Remove( _
   ByVal Identifier As Variant, _
)

Parameters

  • Identifier

Example

Dim MyEntity As Entity 
Dim AttributeID As Integer 

' We want to remove the attribute with 2 as the ID 

AttributeID = 2 

MyEntity.Attributes.Remove(AttributeID) 
  • No labels