Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
BOOLoperator==(constRECT&rect)const;
Return Value
Nonzero if equal; otherwise 0.
Parameters
rect
Refers to a source rectangle. Can be a RECT or CRect.
Remarks
Determines whether rect is equal to CRect by comparing the coordinates of their upper-left and lower-right corners.
Note Both of the rectangles must be normalized or this function may fail. You can call NormalizeRect to normalize the rectangles before calling this function.
Example
CRect rect1(35, 150, 10, 25);
CRect rect2(35, 150, 10, 25);
CRect rect3(98, 999, 6, 3);
ASSERT(rect1 == rect2);
// works just fine against RECTs, as well
RECT test;
test.left = 35;
test.top = 150;
test.right = 10;
test.bottom = 25;
ASSERT(rect1 == test);
CRect Overview | Class Members | Hierarchy Chart
See Also CRect::operator !=, CRect::NormalizeRect,