TiScope.Channel
TiScope
Used to access a specific channel object.
property Channel[Index : Integer]: TiScopeChannel;
Description
Use Channel to access a specific channel object. The index value is zero based
and must be less than the ChannelCount. To add a channel, use the AddChannel method. To delete a channel, use the DeleteChannel method. To remove all channels, use the RemoveAllChannels method.
Example
Delphi
iComponent.Channel[0].TitleText := 'Channel 1';
C++ Builder
iComponent->Channel[0]->TitleText = "Channel 1";
Note: Index is zero based.
Contents | Index | Previous | Next