ProfilePropertySettingsCollection.RemoveAt(Int32) Méthode
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.
Supprime de la collection un objet ProfilePropertySettings à l'emplacement d'index spécifié.
public:
void RemoveAt(int index);
public void RemoveAt (int index);
member this.RemoveAt : int -> unit
Public Sub RemoveAt (index As Integer)
Paramètres
- index
- Int32
Index d'un objet ProfilePropertySettings dans la collection.
Exceptions
Il n'existe aucun objet ProfilePropertySettings au niveau de l'index spécifié dans la collection.
- ou -
Cet élément a déjà été supprimé.
- ou -
La collection est en lecture seule.
Exemples
L'exemple de code suivant montre comment utiliser la méthode RemoveAt. Cet exemple de code fait partie d’un exemple plus grand fourni pour la ProfileSection classe .
// Remove a PropertySettings from the group.
newPropGroup.PropertySettings.Remove("AvatarImage");
newPropGroup.PropertySettings.RemoveAt(0);
' Remove a PropertySettings from the group.
newPropGroup.PropertySettings.Remove("AvatarImage")
newPropGroup.PropertySettings.RemoveAt(0)
Remarques
Cette méthode insère un remove
élément dans la section appropriée du fichier de configuration pour tout élément défini dans un fichier de configuration de niveau supérieur. Si l’élément est défini dans la section appropriée du fichier de configuration actuel, son entrée est supprimée du fichier de configuration. L’objet à supprimer doit exister dans la collection.