CimTable.GetAlarmLogPtLogCond (method)

Gets the logging conditions for a specific event or alarm.
Syntax: short = object.GetAlarmLogPtLogCond ( pointID )
Parameters:
pointID As String - The name of the point whose logging conditions are to be retrieved
Description: The CimTable.GetAlarmLogPtLogCond method gets the logging conditions for a specific alarm in ALARM_LOG or the logging conditions for a specific event in the EVENT_LOG.

Note: This method is only valid for ALARM_LOG and EVENT_LOG

Example

if (NOT (alarmTable.GetAlarmLogPtLogCond("BURNER_TEMP") And cimAlarmReset))
    alarmTable.SetAlarmLogPtLogCond("BURNER_TEMP",cimAlarmReset)
if (NOT (eventTable.GetAlarmLogPtLogCond("GATE_OPENED") And cimAlarmDelete))
    alarmTable.SetAlarmLogPtLogCond("GATE_OPENED", cimAlarmDelete)