The Animation type exposes the following members.
Constructors
| Name | Description | |
|---|---|---|
| Animation |
Default constructor
|
Methods
| Name | Description | |
|---|---|---|
| Deserialize | Overloaded. | |
| Equals | (Inherited from Object.) | |
| Finalize |
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.) | |
| GetHashCode |
Serves as a hash function for a particular type.
(Inherited from Object.) | |
| GetType |
Gets the Type of the current instance.
(Inherited from Object.) | |
| MemberwiseClone |
Creates a shallow copy of the current Object.
(Inherited from Object.) | |
| Parse |
Convert a series of XML animation descriptions into Animations and assign them to their corresponding
Animation properties on a provided ExtenderControl instance. This will most likely be called by
AnimationExtenderControlBase.Animations, but it is publicly exposed so you can call it in the event
your extender cannot inherit from AnimationExtenderControlBase.
| |
| Serialize |
Convert an animation into its JSON description
| |
| ToString |
Convert the animation into its JSON description
(Overrides Object..::.ToString()()().) |
Properties
| Name | Description | |
|---|---|---|
| Children |
List of child animations (this corresponds to any child elements in the XML
description, or the AnimationChildren array in the JSON description), which
should only be needed for animations inheriting from SequenceAnimation or
CompositeAnimation.
| |
| Name |
Name of the animation (this corresponds to the tag name of the XML
description, or the AnimationName property of the JSON description) that
matches the name of a registered animation (i.e. this must match one of
the names provided on the client in a call to
AjaxControlToolkit.Animation.registerAnimation('name', type);).
| |
| Properties |
Properties defined for the animation (this corresponds to any of the
attributes in the XML description, or any of the members in the JSON
description), which specify all the necessary parameters of the animation.
|