TPoint type
|
![]() |
Windows
|
type
|
TPoint = record
|
X: Longint;
|
Y: Longint;
|
end;
|
The TPoint type defines a pixel location onscreen, with the origin in the top left corner. X specifies the horizontal coordinate of the point, Y specifies the vertical coordinate.
|