DIAdem Help

Content Type
Programming Language
Current manual
Table of Contents

Property: Channels for StringBlock

Property: Channels for StringBlock

Contains the DirectAccessChannels collection associated with a StringBlock object.

Set oAbstractDirectAccessChannels = Object.Channels
ObjectStringBlock
Object with this property
oAbstractDirectAccessChannelsAbstractDirectAccessChannels
Returned object

The following example creates the channel property Offset for each DirectAccess channel:

Dim oBlock : Set oBlock = File.GetStringBlock
'further instructions
Dim i
For i = 1 to oBlock.Channels.Count
  Call oBlock.Channels(i).Properties.Add("Offset",3)
Next
In This Section
Was this information helpful?