Treefrog.Framework.Imaging.Rectangle.Contains C# (CSharp) Method

Contains() public method

public Contains ( Point point ) : bool
point Point
return bool
        public bool Contains(Point point)
        {
            return point.X >= Left && point.X < Right && point.Y >= Top && point.Y < Bottom;
        }