Windows.UI.Xaml.Media.Animation.PointKeyFrameCollection
July 6, 2022 ยท View on GitHub
-description
Represents a collection of PointKeyFrame objects that can be individually accessed by index. PointKeyFrameCollection is the value of the PointAnimation.KeyFrames property.
-remarks
Enumerating the collection in C# or Microsoft Visual Basic
A PointKeyFrameCollection is enumerable, so you can use language-specific syntax such as foreach in C# to enumerate the items in the collection. The compiler does the type-casting for you and you won't need to cast to IEnumerable<PointKeyFrame> explicitly. If you do need to cast explicitly, for example if you want to call GetEnumerator, cast to IEnumerable<T> with a PointKeyFrame constraint.
-examples
-see-also
PointAnimation.KeyFrames, IVector<T>, IIterable<T>, IList<T>