Braincase.GanttChart.PrintViewport.DeviceToWorldCoord C# (CSharp) Метод

DeviceToWorldCoord() публичный Метод

Convert view coordinates to world coordinate
public DeviceToWorldCoord ( PointF screencoord ) : PointF
screencoord System.Drawing.PointF
Результат System.Drawing.PointF
        public PointF DeviceToWorldCoord(PointF screencoord)
        {
            return new PointF(screencoord.X + X, screencoord.Y + Y);
        }

Same methods

PrintViewport::DeviceToWorldCoord ( Point screencoord ) : PointF