バージョン

DropDownListWidth プロパティ

ドロップダウンリストの幅を取得または設定します。
シンタックス
'宣言
 
Public Property DropDownListWidth As Integer
public int DropDownListWidth {get; set;}
解説

このプロパティを 0 に設定すると、ドロップダウン リストの幅はコントロールの幅と等しくなるようにサイズが自動調整されます。

このプロパティを -1 に設定すると、ドロップダウン リストの幅は最長の項目のテキストを収めるためにサイズが自動調整されます。

使用例
Private Sub SwapAlignment()

    Me.UltraComboEditor1.DropDownListWidth = 150

    If Me.UltraComboEditor1.DropDownButtonAlignment = Infragistics.Win.ButtonAlignment.Right Then
        Me.UltraComboEditor1.DropDownButtonAlignment = Infragistics.Win.ButtonAlignment.Left
        Me.UltraComboEditor1.DropDownListAlignment = Infragistics.Win.DropDownListAlignment.Right
    Else
        Me.UltraComboEditor1.DropDownButtonAlignment = Infragistics.Win.ButtonAlignment.Right
        Me.UltraComboEditor1.DropDownListAlignment = Infragistics.Win.DropDownListAlignment.Left
    End If

End Sub
private void SwapAlignment()
{

	this.ultraComboEditor1.DropDownListWidth = 150;

	if(this.ultraComboEditor1.DropDownButtonAlignment == Infragistics.Win.ButtonAlignment.Right)
	{
		this.ultraComboEditor1.DropDownButtonAlignment = Infragistics.Win.ButtonAlignment.Left;
		this.ultraComboEditor1.DropDownListAlignment = Infragistics.Win.DropDownListAlignment.Right  ;
	}
	else
	{
		this.ultraComboEditor1.DropDownButtonAlignment = Infragistics.Win.ButtonAlignment.Right;
		this.ultraComboEditor1.DropDownListAlignment = Infragistics.Win.DropDownListAlignment.Left;
	}																						

}
参照