Page 1 of 1
What is theequivalent function in .net for getmousepoint in
Posted: Thu Aug 14, 2008 4:19 pm
by 8119969
the active x version. I am trying to upgrade a program and it uses GetMousePoint and in the .net version 1 and I can't find the equivalent function.
Posted: Mon Aug 18, 2008 9:48 am
by Pep
Hello John,
GetMousePoint does not exist in the NET version, but you can do the same by using the Clicked method :
Code: Select all
private void tChart1_MouseDown(object sender, MouseEventArgs e)
{
MessageBox.Show(points1.Clicked(e.X, e.Y).ToString());
}