Description

Deletes a View 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 ViewID As Integer

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

ViewID = 2

MyModel.Views.Remove(ViewID)
  • No labels