DIAdem Help

Content Type
Programming Language
Current manual
Table of Contents

Property: Channels for BinaryBlock

Property: Channels for BinaryBlock

Contains the DirectAccessChannels collection associated with a BinaryBlock object.

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

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

Dim oBlock : Set oBlock = File.GetBinaryBlock()
'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?