Spread for ASP.NET 11 Product Documentation
CopyTo(Array,Int32) Method
Example 


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > DefaultStyleCollection Class > CopyTo Method : CopyTo(Array,Int32) Method
One-dimensional array into which the elements from ICollection are copied; the array indexing must be zero-based.
Zero-based index in the array at which to paste the styles
Copies the styles in the collection to a specified array.
Syntax
'Declaration
 
Public Overloads Sub CopyTo( _
   ByVal array As Array, _
   ByVal index As Integer _
) 
'Usage
 
Dim instance As DefaultStyleCollection
Dim array As Array
Dim index As Integer
 
instance.CopyTo(array, index)
public void CopyTo( 
   Array array,
   int index
)

Parameters

array
One-dimensional array into which the elements from ICollection are copied; the array indexing must be zero-based.
index
Zero-based index in the array at which to paste the styles
Exceptions
ExceptionDescription
No array specified, or specified array is null (Nothing)
Specified array is invalid; must have a rank of one
Specified array is invalid; must have sufficient length
Specified index is out of range; must be greater than zero
Example
FarPoint.Web.Spread.DefaultStyleCollection dsc = new FarPoint.Web.Spread.DefaultStyleCollection();
Object[] myarray = new Object[dsc.Count];
dsc.CopyTo(myarray, 0);
TextBox1.Text = myarray.GetValue(1).ToString();
Dim dsc As New FarPoint.Web.Spread.DefaultStyleCollection
Dim myarray(dsc.Count)
dsc.CopyTo(myarray, 0)
TextBox1.Text = myarray.GetValue(1).ToString()
See Also

Reference

DefaultStyleCollection Class
DefaultStyleCollection Members
Overload List