DIAdem Help

Content Type
Programming Language
Current manual
Table of Contents

Property: Name for ProcessedChannel

Property: Name for ProcessedChannel

Receives the name of a ProcessedChannel object.

Object.Name
ObjectProcessedChannel
Object with this property
Object.NameString with read and write access

The following example searches for the Processed channel MyChannel in all channel groups and creates the Sensor_Type channel property for this channel:

Dim oMyChn, i
For i = 1 to Root.ChannelGroups.Count
  For Each oMyChn in Root.ChannelGroups(i).Channels
    If oMyChn.IsKindOf(eProcessed) and (oMyChn.Name = "MyChannel") then
      Call oMyChn.Properties.Add("Sensor_Type","TC-J")
    End If
  Next
Next
In This Section
Was this information helpful?