CimTables.Delete (method)

Deletes a table from the Database.
Syntax: Boolean = object.Delete ( tableID )
Parameters:
tableID As String - The name of the table to delete
Description: The CimTables.Delete method allows you delete a specified table for the database and remover the logging for all the points contained in that table.

Example

Dim project as CimProject
set project = CreateObject("CimProject")
project.OpenLocalProject "c:\cimpdemo\cimpdemo.gef"
Dim tables as CimTables
set tables = project.DataBase.Tables
status = tables.Delete("TABLE_B")