Copies the styles in the collection to a specified array.
Syntax
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
Example
C# | Copy Code |
---|
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();
|
Visual Basic | Copy Code |
---|
Dim dsc As New FarPoint.Web.Spread.DefaultStyleCollection
Dim myarray(dsc.Count)
dsc.CopyTo(myarray, 0)
TextBox1.Text = myarray.GetValue(1).ToString() |
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