PointToClient (Point p)
method
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);
}
}
}
Discussion
Join PTMC community to post your comments
No comments yet. Be the first.