You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

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) 

See Also

  • No labels