导航:  GdiPlus Classes > Structures >

PointF

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

Defines the x- and y-coordinates of a point.

 

C++ Syntax

 

typedef struct PointF {

REAL x;

REAL y;

};

 

FreeBASIC 语法

 

TYPE PointF

x AS FLOAT

y AS FLOAT

END TYPE

 

Members

 

x

 

Specifies the x-coordinate of a point.

 

y

 

Specifies the y-coordinate of a point.