Location method
A constructor that provides several ways to specify the Location coordinates.
For user convenience, the values may be given as numbers or taken from another object.
Syntax
Location obj = new Location(x, y);
Location obj = new Location(point);
Location obj = new Location();
Parameters
- x
- Type:int
- The horizontal coordinate of the point in pixels (from the left of the image).
- y
- Type:int
- The vertical coordinate of the point in pixels (from the top of image).
- point
- Type:Point
- The top-left corner.
Return value
- Type: Location