CPoint::CPoint
Construit un objet CPoint.
CPoint( ) throw( );
CPoint(
int initX,
int initY
) throw( );
CPoint(
POINT initPt
) throw( );
CPoint(
SIZE initSize
) throw( );
CPoint(
LPARAM dwPoint
) throw( );
Paramètres
initX
Spécifie la valeur du membre de x d' CPoint.initY
Spécifie la valeur du membre de y d' CPoint.initPt
Structure ou CPoint dePOINT qui spécifie les valeurs utilisées pour initialiser CPoint.initSize
Structure ou CSize deTAILLE qui spécifie les valeurs utilisées pour initialiser CPoint.dwPoint
Définit x membre au mot de poids faible d' dwPoint et au membre de y au mot de poids fort d' dwPoint.
Notes
Si aucun argument n'est fourni, x et les membres de y ne sont pas initialisés.
Exemple
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);
Configuration requise
Header: atltypes.h