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.