XPTable.Models.Table.DisplayRectToClient C# (CSharp) Method

DisplayRectToClient() public method

Computes the location of the specified point relative to the display rectangle into client coordinates
public DisplayRectToClient ( Point p ) : Point
p Point The point relative to the display rectangle to convert
return Point
        public Point DisplayRectToClient(Point p)
        {
            return this.DisplayRectToClient(p.X, p.Y);
        }

Same methods

Table::DisplayRectToClient ( int x, int y ) : Point
Table::DisplayRectToClient ( Rectangle rect ) : Rectangle
Table