Ejemplo n.º 1
0
 /// <summary>
 /// Transforms the specified point from client to screen coordinates.
 /// </summary>
 /// <param name="point">
 /// A <see cref="System.Drawing.Point"/> to transform.
 /// </param>
 /// <returns>
 /// The point transformed to screen coordinates.
 /// </returns>
 public Point PointToScreen(Point point)
 {
     return(implementation.PointToScreen(point));
 }