Defines the x- and y-coordinates of a point.
C++ Syntax
typedef struct Point {
LONG x;
LONG y;
};
FreeBASIC 语法
TYPE Point
x AS INT_
y AS INT_
END TYPE
Members
x
Specifies the x-coordinate of a point.
y
Specifies the y-coordinate of a point.