Page History
Description
Deletes a View object as specified by the given name or ID, from ER/Studio. PARAMETERS: Identifier (String or Integer).
Syntax
Code Block | ||
---|---|---|
| ||
Public Sub Remove( _
ByVal Identifier As Variant _
) |
Parameters
- Identifier
Example
Code Block | ||
---|---|---|
| ||
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 | ||
---|---|---|
| ||