バージョン

DropDown メソッド (UltraDateTimeEditor)

コントロールのカレンダー部分を表示します。
シンタックス
'宣言
 
Public Function DropDown() As Boolean
public bool DropDown()

戻り値の型

ドロップダウンカレンダーが表示されたかどうかを示すブール値。
使用例
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinEditors

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

        '	Call the DropDown method to programmatically display
        '	the DropDown calendar
        Me.UltraDateTimeEditor1.DropDown()

    End Sub
using System.Diagnostics;
using Infragistics.Win;
using Infragistics.Win.UltraWinEditors;

		private void button1_Click(object sender, System.EventArgs e)
		{
			//	Call the DropDown method to programmatically display
			//	the DropDown calendar
			this.ultraDateTimeEditor1.DropDown();
		}
参照