Click or drag to resize
KaxMenuExpandAnimation Property
Gets the settings for the animation played when an item opens.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
[PersistenceModeAttribute(PersistenceMode.InnerProperty)]
public AnimationSettings ExpandAnimation { get; }

Property Value

Type: AnimationSettings
An AnnimationSettings that represents the expand animation.
Remarks

Use the ExpandAnimation property to customize the expand animation of KaxMenu. You can specify the Type and the Duration of the expand animation. To disable expand animation effects you should set the Type to AnimationType.None.
To customize the collapse animation you can use the CollapseAnimation property.

Examples
The following example demonstrates how to set the ExpandAnimation of KaxMenu.

ASPX:

<kettic:KaxMenu ID="KaxMenu1" runat="server">

<ExpandAnimation Type="OutQuint" Duration="300" />

<Items>

<kettic:KaxMenuItem Text="News" >

<Items>

<kettic:KaxMenuItem Text="CNN" NavigateUrl="http://www.cnn.com" />

<kettic:KaxMenuItem Text="Google News" NavigateUrl="http://news.google.com" />

</Items>

</kettic:KaxMenuItem>

<kettic:KaxMenuItem Text="Sport" >

<Items>

<kettic:KaxMenuItem Text="ESPN" NavigateUrl="http://www.espn.com" />

<kettic:KaxMenuItem Text="Eurosport" NavigateUrl="http://www.eurosport.com" />

</Items>

</kettic:KaxMenuItem>

</Items>

</kettic:KaxMenu>

void Page_Load(object sender, EventArgs e)
{
    KaxMenu1.ExpandAnimation.Type = AnimationType.Linear;
    KaxMenu1.ExpandAnimation.Duration = 300;
}
See Also