ImageCollection.CopyTo Method |
Copies the elements of the collection starting at startingIndex
into an array.
Namespace:
AGI.Foundation.Graphics
Assembly:
AGI.Foundation.Graphics (in AGI.Foundation.Graphics.dll) Version: 24.3.420.0 (24.3.420.0)
Syntaxpublic void CopyTo(
GlobeImageOverlay[] toArray,
int startingIndex
)
Public Sub CopyTo (
toArray As GlobeImageOverlay(),
startingIndex As Integer
)
public:
virtual void CopyTo(
array<GlobeImageOverlay^>^ toArray,
int startingIndex
) sealed
abstract CopyTo :
toArray : GlobeImageOverlay[] *
startingIndex : int -> unit
override CopyTo :
toArray : GlobeImageOverlay[] *
startingIndex : int -> unit
Parameters
- toArray
- Type:AGI.Foundation.Graphics.GlobeImageOverlay[]
The destination array. - startingIndex
- Type: System.Int32
The index to start copying the elements into
toArray.
Implements
ICollection<T>.CopyTo(T[], Int32)
See Also