CRect::CopyRect
複製 lpSrcRect 矩形轉換 CRect。
void CopyRect(
LPCRECT lpSrcRect
) throw( );
參數
- lpSrcRect
對要複製到的 的長度 結構或 CRect 物件。
範例
CRect rectSource(35, 10, 125, 10);
CRect rectDest;
rectDest.CopyRect(&rectSource);
// rectDest is now set to (35, 10, 125, 10)
RECT rectSource2;
rectSource2.left = 0;
rectSource2.top = 0;
rectSource2.bottom = 480;
rectSource2.right = 640;
rectDest.CopyRect(&rectSource2);
// works against RECT structures, too!
// rectDest is now set to (0, 0, 640, 480)
需求
Header: atltypes.h