バージョン

DroppedDown プロパティ

コントロールがドロップダウンされているかどうかを示します。
シンタックス
'宣言
 
Public Property DroppedDown As Boolean
public bool DroppedDown {get; set;}
解説

DroppedDown プロパティを使用して、コントロールが現在ドロップダウンで、コントロールを強制的にドロップダウンするために使用できるかどうかを決定できます。

このプロパティはランタイムにのみ使用可能です。

使用例
Private Sub ShowDropDown()

    '	If the dropdown is not already visible, set the DroppedDown
    '	property to true, which will give the control focus and display
    '	the dropdown calendar.
    If (Not Me.ultraCalendarCombo1.DroppedDown) Then
        Me.ultraCalendarCombo1.DroppedDown = True
    End If

End Sub
private void ShowDropDown()
{

	//	If the dropdown is not already visible, set the DroppedDown
	//	property to true, which will give the control focus and display
	//	the dropdown calendar.
	if ( ! this.ultraCalendarCombo1.DroppedDown )
		this.ultraCalendarCombo1.DroppedDown = true;

}
参照