IToolList.Items
IToolList
property Items[Index: Integer]: ITools;
Type Library
TeeChartx
Description
The Items property allows access the ToolList via an index system.
Example [Visual Basic]:
Private Sub Form_Load()
Dim MyAnnotationTool1 As Integer
With TChart1
.AddSeries scLine
.Series(0).FillSampleValues 10
MyAnnotationTool1 = .Tools.Add(tcAnnotate)
With .Tools.Items(MyAnnotationTool1).asAnnotation
.Position = ppLeftTop
.Text = "Access"
End With
End With
End Sub