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

DeviceToWorldCoord() public method

Convert view coordinates to world coordinates
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

ControlViewport::DeviceToWorldCoord ( PointF screencoord ) : PointF