CRect::CopyRect
更新 : 2007 年 11 月
lpSrcRect で指定された四角形を CRect にコピーします。
void CopyRect(
LPCRECT lpSrcRect
) throw( );
パラメータ
- lpSrcRect
コピーされる RECT 構造体または 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)
必要条件
ヘッダー : atltypes.h