Lire en anglais

Partager via


ObjectKeyFrameCollection Classe

Définition

Représente une collection d’objets ObjectKeyFrame accessibles individuellement par index. ObjectKeyFrameCollection est la valeur de la propriété ObjectAnimationUsingKeyFrames.KeyFrames .

public ref class ObjectKeyFrameCollection sealed : IIterable<ObjectKeyFrame ^>, IVector<ObjectKeyFrame ^>
/// [Windows.Foundation.Metadata.Activatable(65536, Windows.Foundation.UniversalApiContract)]
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
class ObjectKeyFrameCollection final : IIterable<ObjectKeyFrame>, IVector<ObjectKeyFrame>
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
/// [Windows.Foundation.Metadata.Activatable(65536, "Windows.Foundation.UniversalApiContract")]
class ObjectKeyFrameCollection final : IIterable<ObjectKeyFrame>, IVector<ObjectKeyFrame>
[Windows.Foundation.Metadata.Activatable(65536, typeof(Windows.Foundation.UniversalApiContract))]
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
public sealed class ObjectKeyFrameCollection : IEnumerable<ObjectKeyFrame>, IList<ObjectKeyFrame>
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
[Windows.Foundation.Metadata.Activatable(65536, "Windows.Foundation.UniversalApiContract")]
public sealed class ObjectKeyFrameCollection : IEnumerable<ObjectKeyFrame>, IList<ObjectKeyFrame>
Public NotInheritable Class ObjectKeyFrameCollection
Implements IEnumerable(Of ObjectKeyFrame), IList(Of ObjectKeyFrame)
Héritage
Object Platform::Object IInspectable ObjectKeyFrameCollection
Attributs
Implémente

Configuration requise pour Windows

Famille d’appareils
Windows 10 (introduit dans 10.0.10240.0)
API contract
Windows.Foundation.UniversalApiContract (introduit dans v1.0)

Remarques

Énumération de la collection en C# ou Microsoft Visual Basic

Un ObjectKeyFrameCollection étant énumérable, vous pouvez utiliser la syntaxe propre au langage, telle que foreach en C# pour énumérer les éléments de la collection. Le compilateur effectue le cast de type pour vous et vous n’aurez pas besoin d’effectuer un cast IEnumerable<Object> vers explicitement. Si vous avez besoin d’un cast explicite, par exemple si vous souhaitez appeler GetEnumerator, effectuez un cast en IEnumerable<T> avec une contrainte Object .

Constructeurs

ObjectKeyFrameCollection()

Initialise une nouvelle instance de la classe ObjectKeyFrameCollection.

Propriétés

Size

Obtient la taille (nombre) de la collection.

Méthodes

Append(ObjectKeyFrame)

Ajoute un nouvel élément à la collection.

Clear()

Supprime tous les éléments de la collection.

First()

Retourne l’itérateur pour l’itération sur les éléments de la collection.

GetAt(UInt32)

Retourne l’élément situé à l’index spécifié.

GetMany(UInt32, ObjectKeyFrame[])

Récupère plusieurs éléments en une seule passe à travers l’itérateur.

GetView()

Obtient une vue immuable dans la collection.

IndexOf(ObjectKeyFrame, UInt32)

Récupère l’index de l’élément spécifié.

InsertAt(UInt32, ObjectKeyFrame)

Insère l’élément spécifié à l’index spécifié.

RemoveAt(UInt32)

Supprime l'élément à l'index spécifié.

RemoveAtEnd()

Supprime le dernier élément de la collection.

ReplaceAll(ObjectKeyFrame[])

Efface initialement la collection, puis insère le tableau fourni en tant que nouveaux éléments.

SetAt(UInt32, ObjectKeyFrame)

Définit la valeur à l’index spécifié sur la valeur ObjectKeyFrame spécifiée.

S’applique à

Produit Versions
WinRT Build 10240, Build 10586, Build 14383, Build 15063, Build 16299, Build 17134, Build 17763, Build 18362, Build 19041, Build 20348, Build 22000, Build 22621, Build 26100

Voir aussi