COORD

Far Manager

COORD

The COORD structure defines the coordinates of a character cell in a console screen buffer. The origin of the coordinate system (0,0) is at the top, left cell of the buffer.
typedef struct _COORD {
  SHORT X;
  SHORT Y;
} COORD;

Members

X
Horizontal coordinate or column value.
Y
Vertical coordinate or row value.

Remarks

See also: