Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 1.74 KB

objectkeyframecollection.md

File metadata and controls

29 lines (18 loc) · 1.74 KB
-api-id -api-type
T:Windows.UI.Xaml.Media.Animation.ObjectKeyFrameCollection
winrt class

Windows.UI.Xaml.Media.Animation.ObjectKeyFrameCollection

-description

Represents a collection of ObjectKeyFrame objects that can be individually accessed by index. ObjectKeyFrameCollection is the value of the ObjectAnimationUsingKeyFrames.KeyFrames property.

-remarks

Enumerating the collection in C# or Microsoft Visual Basic

An ObjectKeyFrameCollection 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<Object> explicitly. If you do need to cast explicitly, for example if you want to call GetEnumerator, cast to IEnumerable<T> with an Object constraint.

-examples

-see-also

IVector<T>, IIterable<T>, IList<T>