导航:  GdiPlus Classes > Structures >

Point

上一页返回章节概述下一页

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.