DataGridViewComboBoxCell.ObjectCollection.CopyTo(Object[], Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Copies the entire collection into an existing array of objects at a specified location within the array.
public:
void CopyTo(cli::array <System::Object ^> ^ destination, int arrayIndex);
public void CopyTo (object[] destination, int arrayIndex);
member this.CopyTo : obj[] * int -> unit
Public Sub CopyTo (destination As Object(), arrayIndex As Integer)
Parameters
- destination
- Object[]
The destination array to which the contents will be copied.
- arrayIndex
- Int32
The index of the element in destination
at which to start copying.
Exceptions
destination
is null
.
arrayIndex
is less than 0 or equal to or greater than the length of destination
.
-or-
The number of elements in the DataGridViewComboBoxCell.ObjectCollection is greater than the available space from arrayIndex
to the end of destination
.
destination
is multidimensional.