RoundRect 函数 (wingdi.h)

RoundRect 函数绘制一个带有圆角的矩形。 矩形使用当前笔轮廓,并使用当前画笔填充。

语法

BOOL RoundRect(
  [in] HDC hdc,
  [in] int left,
  [in] int top,
  [in] int right,
  [in] int bottom,
  [in] int width,
  [in] int height
);

参数

[in] hdc

设备上下文的句柄。

[in] left

矩形左上角的 x 坐标(以逻辑坐标表示)。

[in] top

矩形左上角的 y 坐标(以逻辑坐标表示)。

[in] right

矩形右下角的 x 坐标(以逻辑坐标表示)。

[in] bottom

矩形右下角的 y 坐标(以逻辑坐标表示)。

[in] width

用于绘制圆角的椭圆的宽度(以逻辑坐标表示)。

[in] height

用于绘制圆角的椭圆的高度(以逻辑坐标表示)。

返回值

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

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

注解

此函数既不使用也不更新当前位置。

示例

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

要求

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

另请参阅

填充的形状函数

填充形状概述

矩形