hi;
when i add sevral items as Annotation.but i want to set the same height and width for each shape, how can i do it.
how to change the height and width of shape
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Richard,
You can loop through the tools collection:
You can loop through the tools collection:
Code: Select all
For i = 0 To TChart1.Tools.Count - 1
TChart1.Tools.Items(i).asAnnotation.Width = ToolWidth
TChart1.Tools.Items(i).asAnnotation.Height = ToolHeight
Next i
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |