EU

<< Click to Display Table of Contents >>

 

EU

Text Identifies the engineering unit represented by the value, such as degrees, meters, KW/h, etc. Default value of this property is empty. Example:

Sub Tag_OnStartRunning()
  ' Performs a scale adjustment of a
  ' Tag's temperature
  ' ranging from 0 to 255 on PLC,
  ' but it actually means
  ' 0 to 100 Celsius degrees
  EU = "Celsius degrees"
  EnableScaling = True
  DeviceHigh = 255
  DeviceLow = 0
  EUHigh = 100
  EULow = 0
End Sub

Was this page useful?