Page 1 of 1

Rectangular Tool Editing

Posted: Fri Apr 04, 2008 11:28 am
by 13045128
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.

Posted: Fri Apr 04, 2008 11:37 am
by narcis
Hi history,

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);
		}