导航:  GdiPlus Classes > Structures >

Size

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

The Size structure encapsulates a Width and Height dimension in a 2-D coordinate system.

 

C++ Syntax

 

typedef struct SIZEF {

LONG width;

LONG height;

};

 

FreeBASIC 语法

 

TYPE SIZEF

Width AS INT_

Height AS INT_

END TYPE

 

成员

 

width

 

Vertical measurement.

 

height

 

Horizontal measurement.