CPoint::CPoint
Constrói um 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
Especifica o valor do membro x de CPoint.initY
Especifica o valor do membro y de CPoint.initPt
Estrutura POINT ou CPoint que especifica os valores usados para inicializar CPoint.initSize
Estrutura SIZE ou CSize que especifica os valores usados para inicializar CPoint.dwPoint
Define o membro x como a palavra de ordem inferior de dwPoint e o membro y como a palavra de ordem superior de dwPoint.
Comentários
Se nenhum argumento for fornecido, os membros x e y serão definidos como 0.
Exemplo
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
Cabeçalho: atltypes.h