DataColumnMappingCollection.RemoveAt 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 l'objet DataColumnMapping spécifié de la collection.
Surcharges
RemoveAt(Int32) |
Supprime de la collection l'objet DataColumnMapping à l'index spécifié. |
RemoveAt(String) |
Supprime de la collection l'objet DataColumnMapping portant le nom de colonne source spécifié. |
RemoveAt(Int32)
Supprime de la collection l'objet DataColumnMapping à l'index spécifié.
public:
virtual void RemoveAt(int index);
public void RemoveAt (int index);
abstract member RemoveAt : int -> unit
override this.RemoveAt : int -> unit
Public Sub RemoveAt (index As Integer)
Paramètres
- index
- Int32
Index de base zéro de l'objet DataColumnMapping à supprimer.
Implémente
Exceptions
Il n'existe aucun objet DataColumnMapping à l'index spécifié.
Exemples
L’exemple suivant recherche un DataColumnMapping objet avec l’index donné dans une DataColumnMappingCollection collection. DataColumnMapping S’il existe, le mappage est supprimé. Cet exemple suppose qu’une DataColumnMappingCollection collection a été créée.
public void RemoveDataColumnMapping()
{
// ...
// create mappings
// ...
if (mappings.Contains(7))
mappings.RemoveAt(7);
}
Public Sub RemoveDataColumnMapping()
' ...
' create mappings
' ...
If mappings.Contains(7) Then
mappings.RemoveAt(7)
End If
End Sub
Voir aussi
S’applique à
RemoveAt(String)
Supprime de la collection l'objet DataColumnMapping portant le nom de colonne source spécifié.
public:
virtual void RemoveAt(System::String ^ sourceColumn);
public void RemoveAt (string sourceColumn);
abstract member RemoveAt : string -> unit
override this.RemoveAt : string -> unit
Public Sub RemoveAt (sourceColumn As String)
Paramètres
- sourceColumn
- String
Nom de colonne source qui respecte la casse.
Implémente
Exceptions
Il n'existe aucun objet DataColumnMapping portant le nom de colonne source spécifié.
Exemples
L’exemple suivant recherche un DataColumnMapping objet avec le nom de colonne source donné dans une DataColumnMappingCollection collection. DataColumnMapping S’il existe, le mappage est supprimé. Cet exemple suppose qu’une DataColumnMappingCollection collection a été créée.
public void RemoveDataColumnMapping()
{
// ...
// create columnMappings
// ...
if (columnMappings.Contains("Picture"))
columnMappings.RemoveAt("Picture");
}
Public Sub RemoveDataColumnMapping()
' ...
' create columnMappings
' ...
If columnMappings.Contains("Picture") Then
columnMappings.RemoveAt("Picture")
End If
End Sub