CRect::operator - =
前两个重载由指定的偏移量移动 CRect。
void operator -=(
POINT point
) throw( );
void operator -=(
SIZE size
) throw( );
void operator -=(
LPCRECT lpRect
) throw( );
参数
lpRect
指向 RECT 包含单元数deflate CRect的每一端的结构或 CRect 对象。
备注
参数的 x 和 y 坐标(或 cx 和 cy)值从 CRect减去。
第三个重载只是在参数中的每个成员所单位数量deflate CRect。 请注意此重载函数与 DeflateRect。
示例
CRect rect1(100, 235, 200, 335);
CPoint pt(35, 65);
rect1 -= pt;
CRect rectResult(65, 170, 165, 270);
ASSERT(rect1 == rectResult);
要求
Header: atltypes.h