TPoint type
Return to Introduction 
Unit
Windows  

Declaration
type  
  TPoint = record  
    X: Longint;  
    Y: Longint;  
  end;  

Description
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.