Gets or sets the AnimationEffect to use when the drop-down list is collapsing.

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

Syntax

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

Examples

Copy CodeC#
<cc1:C1ComboBox ID="c1ComboBox2" runat="server" CollapseAnimation="DropInFromTop"></cc1:C1ComboBox>

See Also