Gets or sets SelectionMode of this C1ComboBox.

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

Syntax

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

Examples

Copy CodeC#
<cc1:C1ComboBox ID="c1ComboBox2" runat="server" SelectionMode="Multiple"></cc1:C1ComboBox>

See Also