DataGridViewSelectedCellCollection.CopyTo(DataGridViewCell[], 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.
Copie les éléments de la collection dans le tableau DataGridViewCell spécifié à l'index spécifié.
public:
void CopyTo(cli::array <System::Windows::Forms::DataGridViewCell ^> ^ array, int index);
public void CopyTo (System.Windows.Forms.DataGridViewCell[] array, int index);
override this.CopyTo : System.Windows.Forms.DataGridViewCell[] * int -> unit
Public Sub CopyTo (array As DataGridViewCell(), index As Integer)
Paramètres
- array
- DataGridViewCell[]
Tableau unidimensionnel de type DataGridViewCell, qui constitue la destination des éléments copiés à partir de la collection. Ce tableau doit avoir une indexation de base zéro.
- index
- Int32
Index de base zéro dans l'array
à partir duquel la copie commence.
Exceptions
array
a la valeur null
.
index
est inférieur à zéro.
array
est multidimensionnel.
- ou -
Le nombre d’éléments dans la DataGridViewCellCollection est supérieur à l’espace disponible entre
index
et la fin d’array
.
DataGridViewCellCollection ne peut pas être casté automatiquement en type array
.