CComboBox::GetDroppedControlRect
Chame a função de membro de GetDroppedControlRect para recuperar as coordenadas da tela da caixa de listagem (descartada - para baixo) visível de uma caixa de combinação drop-down.
void GetDroppedControlRect(
LPRECT lprect
) const;
Parâmetros
- lprect
Pontos a estrutura de RECT que deve receber as coordenadas.
Exemplo
// This example move a combo box so that the upper left
// corner of the combo box is at a specific point.
// The point to move the combo box to.
CPoint myPoint(30, 10);
CRect r;
m_pComboBox->GetDroppedControlRect(&r);
m_pComboBox->GetParent()->ScreenToClient(&r);
r.OffsetRect(myPoint - r.TopLeft());
m_pComboBox->MoveWindow(&r);
Requisitos
Cabeçalho: afxwin.h