Check to see if chart has annotation tool...
Posted: Thu Nov 16, 2006 1:27 pm
Is there a way to see if a chart contains an annotation tool that can be accessed?
Thanks,
Tom
Thanks,
Tom
Steema Software - Customer Support Forums
http://216.92.101.67/support/
Code: Select all
for i := 0 to Chart1.Tools.Count - 1 do
if (Chart1.Tools.Items[i] is TAnnotationTool) then
With (Chart1.Tools.Items[i] as TAnnotationTool) do
begin
//Do something
end;