TableCellCollection.CopyTo 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 contents of the collection and inserts them into a specified array starting at a specified index position in the array.
Overloads
CopyTo(Array, Int32) |
Copies the contents of the collection and inserts them into a specified array starting at a specified index position in the array. |
CopyTo(TableCell[], Int32) |
Copies the contents of the collection and inserts them into a specified TableCell array of starting at a specified index position in the array. |
CopyTo(Array, Int32)
Copies the contents of the collection and inserts them into a specified array starting at a specified index position in the array.
public:
virtual void CopyTo(Array ^ array, int index);
public void CopyTo (Array array, int index);
abstract member CopyTo : Array * int -> unit
override this.CopyTo : Array * int -> unit
Public Sub CopyTo (array As Array, index As Integer)
Parameters
- array
- Array
A one-dimensional array to which the collection contents will be copied. This array must use zero-based indexing.
- index
- Int32
A zero-based index in array
specifying the position at which to begin inserting the copied collection objects.
Implements
Exceptions
Raised when array
includes items that are not compatible with the type TableCell, or if index
specifies a position that falls outside the bounds of array
.
Raised when array
is null.
Raised when index
is less than 0.
Applies to
CopyTo(TableCell[], Int32)
Copies the contents of the collection and inserts them into a specified TableCell array of starting at a specified index position in the array.
public:
virtual void CopyTo(cli::array <System::Windows::Documents::TableCell ^> ^ array, int index);
public void CopyTo (System.Windows.Documents.TableCell[] array, int index);
abstract member CopyTo : System.Windows.Documents.TableCell[] * int -> unit
override this.CopyTo : System.Windows.Documents.TableCell[] * int -> unit
Public Sub CopyTo (array As TableCell(), index As Integer)
Parameters
- array
- TableCell[]
A one-dimensional TableCell array to which the collection contents will be copied. This array must use zero-based indexing.
- index
- Int32
A zero-based index in array
that specifies the position at which to begin inserting the copied collection objects.
Implements
Exceptions
Raised when array
includes items that are not compatible with the type TableCell, or if index
specifies a position that falls outside of the bounds of array
.
Raised when array
is null.
Raised when index
is less than 0.