rect 结构 (windows.foundation.h)

包含一组四个浮点数,表示矩形的位置和大小。

语法

typedef struct Rect {
  FLOAT X;
  FLOAT Y;
  FLOAT Width;
  FLOAT Height;
} Rect;

成员

X

类型: float

矩形左上角的 x 坐标。

Y

类型: float

矩形左上角的 y 坐标。

Width

类型: float

矩形的宽度。

Height

类型: float

矩形的高度。

要求

   
最低受支持的客户端 Windows 8
最低受支持的服务器 Windows Server 2012
标头 windows.foundation.h

另请参阅

CreateRect

CreateRectArray

IPropertyValue::GetRect

IPropertyValue::GetRectArray