Gets or sets the FilterType used for C1ComboBox.

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

Syntax

C#
[LayoutAttribute(LayoutType.Behavior)]
[NotifyParentPropertyAttribute(true)]
[JsonAttribute(true, true, FilterSetting.StartWith)]
[C1CategoryAttribute("Category.Behavior")]
[DefaultValueAttribute(FilterSetting.StartWith)]
public FilterSetting FilterType { get; set; }
Visual Basic (Declaration)
<LayoutAttribute(LayoutType.Behavior)> _
<NotifyParentPropertyAttribute(True)> _
<JsonAttribute(True, True, FilterSetting.StartWith)> _
<C1CategoryAttribute("Category.Behavior")> _
<DefaultValueAttribute(FilterSetting.StartWith)> _
Public Property FilterType As FilterSetting
	Get
	Set

Examples

Copy CodeC#
<cc1:C1ComboBox ID="c1ComboBox2" runat="server" FilterType="Contains"></cc1:C1ComboBox>

See Also