Gets or sets the header template used for 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#
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Content)]
[TemplateContainerAttribute(typeof(C1ComboBoxItem))]
[PersistenceModeAttribute(PersistenceMode.InnerProperty)]
[BindableAttribute(false)]
[BrowsableAttribute(false)]
public virtual ITemplate HeaderTemplate { get; set; }
Visual Basic (Declaration)
<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Content)> _
<TemplateContainerAttribute(GetType(C1ComboBoxItem))> _
<PersistenceModeAttribute(PersistenceMode.InnerProperty)> _
<BindableAttribute(False)> _
<BrowsableAttribute(False)> _
Public Overridable Property HeaderTemplate As ITemplate
	Get
	Set

Examples

Copy CodeC#
<cc1:C1ComboBox ID="c1ComboBox2" runat="server">
                <HeaderTemplate>
                     Template content
                </HeaderTemplate>
            </cc1:C1ComboBox>

See Also