Adds a specified point to the current table. | |
Syntax: | object.AddLoggedPoint pointID |
Parameters: |
pointID As
String - The name of the point
to add
|
Description: | The CimTable.AddLoggedPoint method allows
you to add a point to a pre-existing table or to a newly created
table. Example Dim database As New CimDatabase Dim table As CimTable Set table = database.GetTable("THIS_TABLE1") table.AddLoggedPoint "POINT2" |