Version

DropDownButtonAlignment Property (UltraComboEditor)

Gets/sets the alignment for the dropdown button.
Syntax
'Declaration
 
Public Property DropDownButtonAlignment As Infragistics.Win.ButtonAlignment
public Infragistics.Win.ButtonAlignment DropDownButtonAlignment {get; set;}
Remarks

The UltraComboEditor control provides the ability to situate the dropdown button on either the right (default) or left side of the control.

Example
This sample shows how to swap the alignment of the controls from left to right.

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;
	}																						

}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also