void DeflateRect(int x,int y);
void DeflateRect(SIZE size);
void DeflateRect(LPCRECT lpRect);
void DeflateRect(int l,int t,int r,int b);
说明:
通过朝CRect的中心移动边以缩小CRect。
参数:
x 指定缩小CRect的左和右边的单位数;
y 指定缩小CRect的上、下边的单位数;
size 指定缩小CRect的单位数的SIZE或CSize;
cx 值指定缩小左、右边的单位数;
cy 指定缩小上、下边的单位数;
lpRect 指向一个RECT结构或CRect,指定缩小每一边的单位数;
l 指定缩小CRect左边的单位数;
t 指定缩小CRect上边的单位数;
r 指定缩小CRect右边的单位数;
b 指定缩小CRect下边的单位数。