Computes the location of the specified client point into screen coordinates.


SYNTAX


public Point PointToScreen (Point p)


PARAMETERS


p — Point

The client coordinate System.Drawing.Point to convert.


RETURN


Point A System.Drawing.Point that represents the converted System.Drawing.Point, p, in screen 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 PointToScreenExamples
{
     public class PointToScreenExamples : 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);
        } 
     }
}