Gets or sets the transition effect when the dropdown toolbar items start collapsing or stops collapsing.

Namespace:  C1.Web.UI.Controls.C1ToolBar
Assembly:  C1.Web.UI.Controls.2 (in C1.Web.UI.Controls.2.dll)

Syntax

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

Remarks

To use a transition effect, the CollapseAnimation or ExpandAnimation property must be set to an animation type before you set the CollapseEasing property or ExpandEasing property. The default transition effect is EaseLinear. This effect moves smoothly from start to end without acceleration or deceleration.

See Also