System.Windows.Rect.ContainsInternal C# (CSharp) Method

ContainsInternal() private method

private ContainsInternal ( double x, double y ) : bool
x double
y double
return bool
        private bool ContainsInternal(double x, double y)
        {
            return ((((x >= this._x) && ((x - this._width) <= this._x)) && (y >= this._y)) && ((y - this._height) <= this._y));
        }