Link

<< Click to Display Table of Contents >>

 

Link

Text Returns the Link configured for this Alarm's User Field. To change the Link configured in this property at run time, users must deactivate this object. For example:

Dim sAlarm
Set sAlarm = _
  Application.GetObject("ConfigAlarms.Area.DigitalAlarm1")
sAlarm.Deactivate()
sAlarm.UserFields.Item("BatchName").Link = _
  "Driver.TagBatchName.Value"
sAlarm.Activate()

Was this page useful?