CPoint::CPoint
Construye un objeto CPoint.
CPoint( ) throw( );
CPoint(
int initX,
int initY
) throw( );
CPoint(
POINT initPt
) throw( );
CPoint(
SIZE initSize
) throw( );
CPoint(
LPARAM dwPoint
) throw( );
Parámetros
initX
Especifique el valor del miembro x de CPoint.initY
Especifique el valor del miembro y de CPoint.initPt
Estructura POINT o CPoint que especifica los valores utilizados para inicializar CPoint.initSize
Estructura SIZE o CSize que especifica los valores utilizados para inicializar CPoint.dwPoint
Establece el miembro x en la palabra de orden inferior de dwPoint y el miembro y en la palabra de orden superior de dwPoint.
Comentarios
Si no se proporcionan argumentos, los miembros x e y se establecen en 0.
Ejemplo
CPoint ptUndefined;
CPoint ptTopLeft(0,0);
// works from a POINT, too
POINT ptHere;
ptHere.x = 35;
ptHere.y = 95;
CPoint ptMFCHere(ptHere);
// works from A SIZE
SIZE sHowBig;
sHowBig.cx = 300;
sHowBig.cy = 10;
CPoint ptMFCBig(sHowBig);
// or from a DWORD
DWORD dwSize;
dwSize = MAKELONG(35, 95);
CPoint ptFromDouble(dwSize);
ASSERT(ptFromDouble == ptMFCHere);
Requisitos
Encabezado: atltypes.h