GradientStopCollection Classe
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Représente une collection d’objets GradientStop accessibles individuellement par index.
public ref class GradientStopCollection sealed : IIterable<GradientStop ^>, IVector<GradientStop ^>
/// [Windows.Foundation.Metadata.Activatable(65536, "Microsoft.UI.Xaml.WinUIContract")]
/// [Windows.Foundation.Metadata.ContractVersion(Microsoft.UI.Xaml.WinUIContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
class GradientStopCollection final : IIterable<GradientStop>, IVector<GradientStop>
[Windows.Foundation.Metadata.Activatable(65536, "Microsoft.UI.Xaml.WinUIContract")]
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.UI.Xaml.WinUIContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
public sealed class GradientStopCollection : IEnumerable<GradientStop>, IList<GradientStop>
Public NotInheritable Class GradientStopCollection
Implements IEnumerable(Of GradientStop), IList(Of GradientStop)
<object>
<object.property>
oneOrMoreGradientStops
</object.property>
</object>
- Héritage
- Attributs
- Implémente
Remarques
Énumération de la collection en C# ou Microsoft Visual Basic
Un GradientStopCollection étant énumérable, vous pouvez utiliser une syntaxe spécifique au langage, comme foreach en C# pour énumérer les éléments de la collection. Le compilateur effectue le casting de type pour vous et vous n’aurez pas besoin de caster IEnumerable<GradientStop>
explicitement. Si vous avez besoin d’un cast explicite, par exemple si vous souhaitez appeler GetEnumerator, effectuez un cast en IEnumerable avec une contrainte GradientStop .
Constructeurs
GradientStopCollection() |
Initialise une nouvelle instance de la classe GradientStopCollection. |
Propriétés
Size |
Obtient la taille (nombre) de la collection. |
Méthodes
Append(GradientStop) |
Ajoute un nouvel élément à la collection. |
Clear() |
Supprime tous les éléments de la collection. |
First() |
Retourne un itérateur pour les éléments de la collection. |
GetAt(UInt32) |
Retourne l’élément situé à l’index spécifié. |
GetMany(UInt32, GradientStop[]) |
Récupère plusieurs éléments en un seul passage par l’itérateur. |
GetView() |
Obtient une vue immuable dans la collection. |
IndexOf(GradientStop, UInt32) |
Récupère l’index de l’élément spécifié. |
InsertAt(UInt32, GradientStop) |
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(GradientStop[]) |
Efface initialement la collection, puis insère le tableau fourni en tant que nouveaux éléments. |
SetAt(UInt32, GradientStop) |
Définit la valeur à l’index spécifié sur la valeur GradientStop spécifiée. |