DIAdem Help

Property: Channels for FixedWidthBlock

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

Property: Channels for FixedWidthBlock

Contains the DirectAccessChannels collection associated with a FixedWidthBlock object.

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

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

Dim oBlock : Set oBlock = File.GetFixedWidthBlock
'further instructions
Dim i
For i = 1 to oBlock.Channels.Count
  Call oBlock.Channels(i).Properties.Add("Offset",3)
Next