Chinaunix首页 | 论坛 | 博客
  • 博客访问: 453285
  • 博文数量: 96
  • 博客积分: 6045
  • 博客等级: 大校
  • 技术积分: 906
  • 用 户 组: 普通用户
  • 注册时间: 2007-07-03 11:29
文章分类

全部博文(96)

文章存档

2014年(1)

2012年(22)

2011年(23)

2010年(31)

2008年(1)

2007年(18)

分类: C/C++

2011-04-28 10:47:25

RECT Structure

该结构定义一个矩形的左上和右下坐标。

语法

typedef struct _RECT {
LONG left;
LONG top;
LONG right;
LONG bottom;
}RECT, *PRECT;

成员

left

矩形左上角的x坐标。

top

矩形左上角y坐标

right

矩形右下角x坐标

bottom

矩形右下角Y坐标

备注

By convention, the right and bottom edges of the rectangle are normally considered exclusive. In other words, the pixel whose coordinates are ( right, bottom ) lies immediately outside of the the rectangle. For example, when RECT is passed to the FillRect function, the rectangle is filled up to, but not including, the right column and bottom row of pixels. This structure is identical to the RECTL structure.

要求

Minimum supported client    Windows 2000 Professional
Minimum supported server    Windows 2000 Server
Header    Windef.h (include Windows.h)
阅读(1123) | 评论(0) | 转发(0) |
0

上一篇:句柄和指针的区别

下一篇:简称了解

给主人留下些什么吧!~~