DIAdem Help

Property: Channels for BinaryBlock

  • Updated2024-09-12
  • 1 minute(s) read

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

Log in to get a better experience