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.