Property: Channels for BinaryBlock
- Updated2024-09-12
- 1 minute(s) read
DataPlugin > Properties > Property: Channels for BinaryBlock
Property: Channels for BinaryBlock
Contains the DirectAccessChannels collection associated with a BinaryBlock object.
Set oAbstractDirectAccessChannels = Object.Channels
Object | BinaryBlock Object with this property |
oAbstractDirectAccessChannels | AbstractDirectAccessChannels 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