[]
        
(Showing Draft Content)

FarPoint.Win.Spread.FpScrollBarButtonCollection.CopyTo

CopyTo Method

CopyTo(Array, int)

Copies the buttons of the ICollection to an Array, starting at a particular Array index.

Declaration
public void CopyTo(Array array, int index)
Public Sub CopyTo(array As Array, index As Integer)
Parameters
Type Name Description
Array array

The one-dimensional Array that is the destination of the buttons copied from ICollection. The Array must have zero-based indexing

int index

The zero-based index in array at which copying begins

Implements
Exceptions
Type Condition
ArgumentNullException

array is null.

ArgumentOutOfRangeException

index is less than zero.

ArgumentException

array is multidimensional.-or- index is equal to or greater than the length of array.-or- The number of buttons in the source ICollection is greater than the available space from index to the end of the destination array.

InvalidCastException

The type of the source ICollection cannot be cast automatically to the type of the destination array.