ImageGlass.ImageBox.IsPointInImage C# (CSharp) Method

IsPointInImage() public method

Determines whether the specified point is located within the image view port
public IsPointInImage ( Point point ) : bool
point Point The point.
return bool
        public virtual bool IsPointInImage(Point point)
        {
            return GetImageViewPort().Contains(point);
        }

Same methods

ImageBox::IsPointInImage ( float x, float y ) : bool
ImageBox::IsPointInImage ( int x, int y ) : bool
ImageBox