Gets or sets a value that determines whether the text is set for the input field of C1ComboBox during arrow key navigation.

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

Syntax

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

Examples

Copy CodeC#
<cc1:C1ComboBox ID="c1ComboBox2" runat="server" SetTextOnArrowNavigation="false"></cc1:C1ComboBox>

See Also