Partager via


CRect::BottomRight

Les coordonnées sont retournées comme une référence à un objet de CPoint contenu dans CRect.

CPoint& BottomRight( ) throw( ); 
const CPoint& BottomRight( ) const throw( );

Valeur de retour

Les détails de l'angle inférieur droit du rectangle.

Notes

Vous pouvez utiliser cette fonction pour obtenir ou définir l'angle inférieur droit du rectangle. Définissez le coin à l'aide de cette fonction à gauche de l'opérateur d'assignation.

Exemple

// 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));   

Configuration requise

Header: atltypes.h

Voir aussi

Référence

CRect, classe

Graphique de la hiérarchie

CRect::TopLeft

CPoint, classe

CRect::CenterPoint