POINT structure

The POINT structure defines the x- and y- coordinates of a point.

Syntax

typedef struct tagPOINT {
  LONG x;
  LONG y;
} POINT, *PPOINT;

Members

  • x
    The x-coordinate of the point.

  • y
    The y-coordinate of the point.

Requirements

Minimum supported client

Windows 2000 Professional [desktop apps only]

Minimum supported server

Windows 2000 Server [desktop apps only]

Header

Windef.h (include Windows.h)

See also

Rectangles Overview

Rectangle Structures

ChildWindowFromPoint

GetBrushOrgEx

PtInRect

SetBrushOrgEx

WindowFromPoint