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

ClientToDisplayRect() public method

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

Same methods

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