Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Assigns srcRect to CRect.
void operator =(
const RECT& srcRect
) throw( );
Parameters
- srcRect
Refers to a source rectangle. Can be a RECT or CRect.
Example
CRect rect(0, 0, 127, 168);
CRect rect2;
rect2 = rect;
ASSERT(rect2 == CRect(0, 0, 127, 168));
Requirements
Header: atltypes.h