What is theequivalent function in .net for getmousepoint in

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
John Lott
Newbie
Newbie
Posts: 14
Joined: Tue Apr 08, 2003 4:00 am

What is theequivalent function in .net for getmousepoint in

Post by John Lott » Thu Aug 14, 2008 4:19 pm

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.

Pep
Site Admin
Site Admin
Posts: 3295
Joined: Fri Nov 14, 2003 5:00 am
Contact:

Post by Pep » Mon Aug 18, 2008 9:48 am

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

Post Reply