CComboBox::GetDroppedControlRect

更新 : 2007 年 11 月

ドロップダウン コンボ ボックスのリスト ボックスが表示されている (ドロップダウンされている) 場合は、リスト ボックスの画面座標を取得します。

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

その他の技術情報

CComboBox のメンバ