ImageGlass.ImageBox.PointToImage C# (CSharp) Method

PointToImage() public method

Converts the given client size point to represent a coordinate on the source image.
public PointToImage ( Point point ) : Point
point Point The source point.
return Point
        public Point PointToImage(Point point)
        {
            return PointToImage(point, false);
        }

Same methods

ImageBox::PointToImage ( Point point, bool fitToBounds ) : Point
ImageBox::PointToImage ( float x, float y ) : Point
ImageBox::PointToImage ( float x, float y, bool fitToBounds ) : Point
ImageBox::PointToImage ( int x, int y ) : Point
ImageBox::PointToImage ( int x, int y, bool fitToBounds ) : Point
ImageBox