Sets the data trigger point for a specific point in a data table. | |
Syntax: | object.SetDataLogPtDataTrig pointID, triggerID |
Parameters: |
pointID As
String - The name of the point
whose data trigger point is to be set
triggerID As
String - the name of the data
trigger point
|
Description: | The CimTable.SetDataLogPtDataTrig method
allows you to set the data trigger point for a specific point in a
data table. Note: This method is only valid for data tables. Example Dim database As New CimDatabase Dim dataTable As CimTable Set dataTable = database.CreateTable("DATA_TABLE",
cimDataTable) dataTable.AddLoggedPoint "POINT1" dataTable.SetDataLogPtDataTrig
"POINT1","TRIG_POINT" |