AnimationDescription.Animations Property

Definition

Gets the collection of animations that are associated with the AnimationDescription object.

public:
 property IVectorView<IPropertyAnimation ^> ^ Animations { IVectorView<IPropertyAnimation ^> ^ get(); };
IVectorView<IPropertyAnimation> Animations();
public IReadOnlyList<IPropertyAnimation> Animations { get; }
var iVectorView = animationDescription.animations;
Public ReadOnly Property Animations As IReadOnlyList(Of IPropertyAnimation)

Property Value

A collection of IPropertyAnimation instances, each of which represents an animation effect specified for this AnimationDescription object.

Remarks

The returned animations should be applied to the object in the order they appear in the collection array. If two or more animations apply to an object, they will appear in the array in this order:

  1. Scale
  2. Translate
  3. Opacity If the animations are being applied to more than one object, then the stagger-related properties (StaggerDelay and StaggerDelayFactor) describe the relative timing among the objects.

Applies to

See also