Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Description

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

Syntax

Code Block
languagevb
Public Sub Remove( _
   ByVal Identifier As Variant _
)

Parameters

  • Identifier

Example

Code Block
languagevb
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)
Info
titleSee Also