Function Reference

_GUICtrlComboBoxEx_GetDroppedControlRect

ドロップダウン状態にあるコンボボックスのスクリーン座標を取得します。

#Include <GuiComboBoxEx.au3>
_GUICtrlComboBoxEx_GetDroppedControlRect($hWnd)

 

パラメータ

$hWnd コントロールのハンドル

 

返し値

成功: 次のフォーマットの配列:
        [0] - 長方形の左上隅のX座標
        [1] - 長方形の左上隅のY座標
        [2] - 長方形の右下隅のX座標
        [3] - 長方形の右下隅のY座標

 

注意

なし。

 

関連

_GUICtrlComboBoxEx_GetDroppedControlRectEx

 


#include <GuiComboBoxEx.au3>
#include <GuiConstantsEx.au3>
#include <Constants.au3>

Opt('MustDeclareVars', 1)

$Debug_CB = False ; ComboBox/ComboBoxEx関数に渡されるClassNameを調べる。動作を確認するにはTrueを設定し、他のコントロールのハンドルを使用

_Main()

Func _Main()
    Local $hGUI, $aRect, $hCombo
   
    ; GUIを作成
    $hGUI = GUICreate("ComboBoxEx Get Dropped Control Rect", 400, 300)
    $hCombo = _GUICtrlComboBoxEx_Create ($hGUI, "", 2, 2, 394, 100)
    GUISetState()

    ; ファイルを追加
    _GUICtrlComboBoxEx_BeginUpdate ($hCombo)
    _GUICtrlComboBoxEx_AddDir ($hCombo, "", $DDL_DRIVES, False)
    _GUICtrlComboBoxEx_AddDir ($hCombo, "", $DDL_DRIVES)
    _GUICtrlComboBoxEx_BeginUpdate ($hCombo)
    _GUICtrlComboBoxEx_AddDir ($hCombo, @WindowsDir & "\*.exe")
    _GUICtrlComboBoxEx_EndUpdate ($hCombo)
    _GUICtrlComboBoxEx_EndUpdate ($hCombo)

    ; ドロップされたコントロールの長方形を取得
    $aRect = _GUICtrlComboBoxEx_GetDroppedControlRect ($hCombo)
    MsgBox(4160, "Information", "Dropped Control Rect: " & StringFormat("[%d][%d][%d][%d]", $aRect[0], $aRect[1], $aRect[2], $aRect[3]))

    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
EndFunc   ;==>_Main