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

DisplayRectToClient() public method

Converts the location of the specified Rectangle relative to the display rectangle into client coordinates
public DisplayRectToClient ( Rectangle rect ) : Rectangle
rect System.Drawing.Rectangle The Rectangle to convert whose location is relative to /// the display rectangle
return System.Drawing.Rectangle
        public Rectangle DisplayRectToClient(Rectangle rect)
        {
            return new Rectangle(this.DisplayRectToClient(rect.Location), rect.Size);
        }

Same methods

Table::DisplayRectToClient ( Point p ) : Point
Table::DisplayRectToClient ( int x, int y ) : Point
Table