CopyTo Method (LineCollection)
In This Topic
Copies the lines in the collection to an array, starting at the specified array index.
Syntax
'Declaration
Public Sub CopyTo( _
ByVal () As Line, _
ByVal As Integer _
)
'Usage
Dim instance As LineCollection
Dim array() As Line
Dim arrayIndex As Integer
instance.CopyTo(array, arrayIndex)
public void CopyTo(
Line[] ,
int
)
Parameters
- array
- One-dimension array that is the destination of the lines copied from the collection.
- arrayIndex
- Zero-based index in array at which copying begins.
See Also