What is theequivalent function in .net for getmousepoint in
What is theequivalent function in .net for getmousepoint in
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.
Hello John,
GetMousePoint does not exist in the NET version, but you can do the same by using the Clicked method :
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());
}
Pep Jorge
http://support.steema.com
http://support.steema.com