CComboBox::GetDroppedControlRect
Llame a la función miembro de GetDroppedControlRect para recuperar las coordenadas de la pantalla del cuadro de lista (quitado-abajo) visible de un cuadro combinado desplegable.
void GetDroppedControlRect(
LPRECT lprect
) const;
Parámetros
- lprect
Señala la estructura de RECT que es recibir las coordenadas.
Ejemplo
// 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
encabezado: afxwin.h