次の方法で共有


CComboBox::GetDroppedControlRect

ドロップダウン コンボ ボックスの表示 (ドロップダウン) リスト ボックスの画面座標を取得するに GetDroppedControlRect のメンバー関数を呼び出します。

void GetDroppedControlRect(
   LPRECT lprect 
) const;

パラメーター

  • lprect
    座標を受け取ることである RECT の構造体へのポインター。

使用例

// 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);

必要条件

ヘッダー: afxwin.h

参照

関連項目

CComboBox クラス

階層図

CB_GETDROPPEDCONTROLRECT