rectangle 函数 (wingdi.h)

Rectangle 函数绘制一个矩形。 矩形使用当前笔轮廓,并使用当前画笔填充。

语法

BOOL Rectangle(
  [in] HDC hdc,
  [in] int left,
  [in] int top,
  [in] int right,
  [in] int bottom
);

参数

[in] hdc

设备上下文的句柄。

[in] left

矩形左上角的 x 坐标(以逻辑坐标为单位)。

[in] top

矩形左上角的 y 坐标(以逻辑坐标为单位)。

[in] right

矩形右下角的 x 坐标(以逻辑坐标为单位)。

[in] bottom

矩形右下角的 y 坐标(以逻辑坐标为单位)。

返回值

如果该函数成功,则返回值为非零值。

如果函数失败,则返回值为零。

注解

矩形既不使用当前位置,也不更新当前位置。

绘制的矩形不包括下边缘和右边缘。

如果使用PS_NULL笔,矩形的尺寸高度减少 1 像素,宽度减少 1 像素。

示例

有关示例,请参阅 使用填充形状

要求

要求
最低受支持的客户端 Windows 2000 Professional [仅限桌面应用]
最低受支持的服务器 Windows 2000 Server [仅限桌面应用]
目标平台 Windows
标头 wingdi.h (包括 Windows.h)
Library Gdi32.lib
DLL Gdi32.dll

另请参阅

填充形状函数

填充形状概述

RoundRect