Gets the footer control of the drop-down list C1ComboBox.

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

Syntax

C#
[BrowsableAttribute(false)]
public WebControl DropDownHeader { get; }
Visual Basic (Declaration)
<BrowsableAttribute(False)> _
Public ReadOnly Property DropDownHeader As WebControl
	Get

Examples

Copy CodeC#
C1ComboBox c = new C1ComboBox();
c.Items.Add(new C1ComboBoxItem("test1"));
c.Items.Add(new C1ComboBoxItem("test2"));
c.DropDownHeader.Controls.Add(new TextBox());

See Also