CRect::BottomRight
坐标的形式返回到 CRect包含的 CPoint 对象的引用。
CPoint& BottomRight( ) throw( );
const CPoint& BottomRight( ) const throw( );
返回值
矩形的底部的右下角坐标。
备注
可以使用此功能添加到获取或设置矩形的底部正确的位置。 将角使用此功能在赋值运算符左侧的。
示例
// use BottomRight() to retrieve the bottom
// right point
CRect rect(210, 150, 350, 900);
CPoint ptDown;
ptDown = rect.BottomRight();
// ptDown is now set to (350, 900)
ASSERT(ptDown == CPoint(350, 900));
// or, use BottomRight() to set the bottom
// right point
CRect rect2(10, 10, 350, 350);
CPoint ptLow(180, 180);
rect2.BottomRight() = ptLow;
// rect2 is now (10, 10, 180, 180)
ASSERT(rect2 == CRect(10, 10, 180, 180));
要求
Header: atltypes.h