TiPlotAnnotationObject.ChannelName
TiPlotAnnotationObject See Also
Specifies the name of the channel used for referencing.
property ChannelName : String;
Description
Use ChannelName to get or set the name of the channel used for referencing.
This property only has an effect when the Reference property is set to iprtChannel. When Style is set to iprtChannel, the X-Axis
and Y-Axis are used when calculating the position coordinates of the annotation
object.
Example
Delphi
iComponent.Annotation[0].ChannelName := 'Channel 1';
iComponent.Annotation[0].ChannelName := iComponent.Channel[0].Name;
C++ Builder
iComponent->Annotation[0]->ChannelName = "Channel 1";
iComponent->Annotation[0]->ChannelName = iComponent->Channel[0]->Name;
Contents | Index | Previous | Next