AnimationDescription.Animations Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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:
- Scale
- Translate
- 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.