New to Telerik UI for WinFormsStart a free 30-day trial

A class that defines settings for configuring the callout and its animations.

Definition

Namespace:Telerik.WinControls.UI.Callout

Assembly:Telerik.WinControls.UI.dll

Syntax:

C#
public class CalloutAnimationManager : IDisposable

Inheritance: objectCalloutAnimationManager

Implements: IDisposable

Constructors

Initializes a new instance of the CalloutAnimationManager class.

C#
public CalloutAnimationManager(RadCalloutForm calloutForm)
Parameters:calloutFormRadCalloutForm

Properties

Gets or sets the duration of close animation, in milliseconds.

C#
public int CloseAnimationDuration { get; set; }

Gets or sets the type of close animation.

C#
public CalloutAnimationType CloseAnimationType { get; set; }

Gets or sets the duration of show animation, in milliseconds.

C#
public int ShowAnimationDuration { get; set; }

Gets or sets the type of show animation.

C#
public CalloutAnimationType ShowAnimationType { get; set; }

Methods

Releases all resources.

C#
public void Dispose()

Implements: IDisposable.Dispose()

Starts a callout form close animation based on the CloseAnimationType, CloseAnimationDuration and ArrowDirection properties.

C#
protected virtual void StartClose()

Starts a callout form show animation based on the ShowAnimationType, ShowAnimationDuration and ArrowDirection properties.

C#
protected virtual void StartShow()