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 x de CPoint.initY
Spécifie la valeur du membre y de CPoint.initPt
Structure POINT ou CPoint qui spécifie les valeurs utilisées pour initialiser CPoint.initSize
Structure SIZE ou CSize qui spécifie les valeurs utilisées pour initialiser CPoint.dwPoint
Définit le membre x en fonction du mot de poids faible de dwPoint et le membre y en fonction du mot de poids fort de dwPoint.
Notes
Si aucun argument n'est fourni, les membres x et y ont la valeur 0.
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
En-tête : atltypes.h