CComboBox::GetDroppedControlRect
Appelez la fonction membre d' GetDroppedControlRect pour récupérer les coordonnées d'écran de la zone de liste (supprimée - vers le bas) visible d'une zone de liste déroulante fixe.
void GetDroppedControlRect(
LPRECT lprect
) const;
Paramètres
- lprect
Pointe vers la structure de RECT qui consiste à accepter les coordonnées.
Exemple
// 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);
Configuration requise
Header: afxwin.h