OpenTK.Graphics.Rectangle.Contains C# (CSharp) Method

Contains() public method

Contains Method
Checks if a Rectangle lies entirely within this Rectangle.
public Contains ( Rectangle rect ) : bool
rect Rectangle
return bool
        public bool Contains(Rectangle rect)
        {
            return (rect == Intersect(this, rect));
        }

Same methods

Rectangle::Contains ( Point pt ) : bool
Rectangle::Contains ( int x, int y ) : bool