Gets or sets the character or string used to separate multiple selections from the C1ComboBox drop-down list.

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

Syntax

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

Examples

Copy CodeC#
<cc1:C1ComboBox ID="c1ComboBox2" runat="server" MultipleSelectionSeparator=","></cc1:C1ComboBox>

See Also