Determines whether the trigger button, or drop-down arrow, appears on the left or right of the C1ComboBox.

Namespace:  C1.Web.UI.Controls.C1ComboBox
Assembly:  C1.Web.UI.Controls.3 (in C1.Web.UI.Controls.3.dll)

Syntax

C#
[C1CategoryAttribute("Category.Appearance")]
[DefaultValueAttribute(TriggerPosition.Right)]
[LayoutAttribute(LayoutType.Appearance)]
[JsonAttribute(true, true, TriggerPosition.Right)]
[BindableAttribute(false)]
public TriggerPosition TriggerPosition { get; set; }
Visual Basic (Declaration)
<C1CategoryAttribute("Category.Appearance")> _
<DefaultValueAttribute(TriggerPosition.Right)> _
<LayoutAttribute(LayoutType.Appearance)> _
<JsonAttribute(True, True, TriggerPosition.Right)> _
<BindableAttribute(False)> _
Public Property TriggerPosition As TriggerPosition
	Get
	Set

Examples

Copy CodeC#
<cc1:C1ComboBox ID="c1ComboBox2" runat="server" TriggerPosition="Right"></cc1:C1ComboBox>

See Also