PointCollection::CopyTo Method (array<Point>^, Int32)
.NET Framework (current version)
Copies the items of the PointCollection to an array, starting at the specified array index.
Assembly: PresentationCore (in PresentationCore.dll)
Parameters
- array
-
Type:
array<System.Windows::Point>^
The one-dimensional array that is the destination of the items copied from the PointCollection. The array must have zero-based indexing.
- index
-
Type:
System::Int32
The zero-based index in array at which copying begins.
Implements
ICollection<T>::CopyTo(array<T>^, Int32)| Exception | Condition |
|---|---|
| ArgumentNullException | array is null. |
| ArgumentOutOfRangeException | index is less than zero. |
| ArgumentException | array is multidimensional. -or- The number of items in the source PointCollection is greater than the available space from index to the end of the destination array. |
.NET Framework
Available since 3.0
Available since 3.0
Show: