导航:  GdiPlus Classes > Structures >

SizeF

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

The SizeF structure encapsulates a Width and Height dimension in a 2-D coordinate system. The SizeF structure uses floating point coordinates.

 

C++ Syntax

 

typedef struct SIZEF {

REAL width;

REAL height;

};

 

FreeBASIC 语法

 

TYPE SIZEF

Width AS REAL

Height AS REAL

END TYPE

 

成员

 

width

 

Vertical measurement.

 

height

 

Horizontal measurement.