Partilhar via


CPoint::CPoint

Constrói um CPoint objeto.

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 x membro CPoint.

  • initY
    Especifica o valor do y membro CPoint.

  • initPt
    PONTO a estrutura ou CPoint que especifica os valores usados para inicializar CPoint.

  • initSize
    dimensionar a estrutura ou CSize que especifica os valores usados para inicializar CPoint.

  • dwPoint
    Define o x a palavra de ordem inferior de membrodwPoint e o y a palavra de ordem alta de membrodwPoint.

Comentários

Se nenhum argumento for fornecido, x and y membros não são inicializados.

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

Consulte também

Referência

Classe CPoint

Gráfico de hierarquia

Outros recursos

CPoint membros