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

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

Syntax

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

Examples

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

See Also