Copies skins to the specified array at the specified index.
Syntax
Parameters
- array
- A one-dimensional array into which the elements from ICollection are copied
The array must have zero-based indexing. - index
- Zero-based index in array at which to paste skins
Exceptions
Example
This example copies the specified skin to an array at the specified index.
C# | Copy Code |
---|
FarPoint.Web.Spread.DefaultSkins ds = new FarPoint.Web.Spread.DefaultSkins();
Object[] myarray = new Object[FarPoint.Web.Spread.DefaultSkins.Count];
ds.CopyTo(myarray, 0);
TextBox1.Text = Convert.ToString(myarray.GetValue(4));
|
Visual Basic | Copy Code |
---|
Dim ds As New FarPoint.Web.Spread.DefaultSkins
Dim myarray(ds.Count)
ds.CopyTo(myarray, 0)
TextBox1.Text = Convert.ToString(myarray.GetValue(4)) |
Requirements
Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6
See Also