Computes the location of the specified screen point into client coordinates.
SYNTAX
public Point PointToClient (Point p)
PARAMETERS
p — Point
The screen coordinate System.Drawing.Point to convert.
RETURN
Point A System.Drawing.Point that represents the converted System.Drawing.Point, p, in client coordinates.
EXAMPLE
using System; using System.Collections; using System.Collections.Generic; using System.Text; using System.Drawing; using PTLRuntime.NETScript; using PTLRuntime.NETScript.Charts; namespace PointToClientExamples { public class PointToClientExamples : NETStrategy { public override void Init() { Point p = new Point(); p.X=10; p.Y=10; Point p2 = new Point(); p2.X=100; p2.Y = 100; CurrentChart.PointToScreen(p); CurrentChart.PointToClient(p2); } } }