Braincase.GanttChart.PrintViewport.DeviceToWorldCoord C# (CSharp) Method

DeviceToWorldCoord() public method

Convert view coordinates to world coordinate
public DeviceToWorldCoord ( Point screencoord ) : PointF
screencoord Point
return System.Drawing.PointF
        public PointF DeviceToWorldCoord(Point screencoord)
        {
            return new PointF(screencoord.X + X, screencoord.Y + Y);
        }

Same methods

PrintViewport::DeviceToWorldCoord ( PointF screencoord ) : PointF