SeriesPointCollection.CopyTo(SeriesPoint[], Int32) Method
In This Article
Copies the items from the collection to the specified array, starting at the specified index in the array object.
Namespace: DevExpress.Xpf.Charts
Assembly: DevExpress.Xpf.Charts.v24.2.dll
NuGet Package: DevExpress.Wpf.Charts
#Declaration
public void CopyTo(
SeriesPoint[] array,
int arrayIndex
)
#Parameters
Name | Type | Description |
---|---|---|
array | Series |
A zero-based Array object that receives the copied items from the Series |
array |
Int32 | The first position in the specified Array object to receive the copied contents. |
#Remarks
Use this method to copy the contents of the SeriesPointCollection into the specified Array object, starting at the specified index.
Note
The array parameter must be a zero-based Array object.
See Also