We have a number of customers that would like to see us save the edited text within the retangular tool when they click on another object. Is it possible to add a lost focus event to the rectangular tool or do you have another way in which we can achieve the same result.
Thanks.
Rectangular Tool Editing
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi history,
It's much simpler, you can just obtain the edited text in the chart's BeforeDraw event, for example:
It's much simpler, you can just obtain the edited text in the chart's BeforeDraw event, for example:
Code: Select all
void tChart1_BeforeDraw(object sender, Steema.TeeChart.Drawing.Graphics3D g)
{
MessageBox.Show(rect1.Text);
}
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 |