FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > NamedStyleCollection クラス > CopyTo メソッド : CopyTo(Array,Int32) メソッド |
'Declaration Public Overloads Overridable Sub CopyTo( _ ByVal array As Array, _ ByVal index As Integer _ )
'使用法 Dim instance As NamedStyleCollection Dim array As Array Dim index As Integer instance.CopyTo(array, index)
例外 | 説明 |
---|---|
System.ArgumentNullException | 配 列が指定されていないか、指定された配列がNullです(Nothing)。 |
System.ArgumentException | 指定された配列が無効です。少なくとも1次元が必要です。 |
System.ArgumentException | 指定された配列が無効です。長さが足りません。 |
System.IndexOutOfRangeException | 指定されたインデックスが範囲外です。0以上の値を指定する必要があります。 |
FarPoint.Win.Spread.NamedStyleCollection nsc = new FarPoint.Win.Spread.NamedStyleCollection(); FarPoint.Win.Spread.NamedStyle ns1 = new FarPoint.Win.Spread.NamedStyle("StyleHeaders", "HeaderDefault"); FarPoint.Win.Spread.NamedStyle ns2 = new FarPoint.Win.Spread.NamedStyle("StyleData", "DataAreaDefault"); ns1.BackColor = Color.LightBlue; ns2.BackColor = Color.Gray; nsc.AddRange(new Object[] {ns1, ns2}); fpSpread1.NamedStyles = nsc; fpSpread1.ActiveSheet.ColumnHeader.DefaultStyle = nsc[0]; fpSpread1.ActiveSheet.DefaultStyle = nsc[1]; object[] myarray = new Object[nsc.Count]; nsc.CopyTo(myarray, 0); label1.Text = "The name of the first style in the collection " + myarray.GetValue(0).ToString();
Dim nsc As New FarPoint.Win.Spread.NamedStyleCollection() Dim ns1 As New FarPoint.Win.Spread.NamedStyle("StyleHeaders", "HeaderDefault") Dim ns2 As New FarPoint.Win.Spread.NamedStyle("StyleData", "DataAreaDefault") ns1.BackColor = Color.LightBlue ns2.BackColor = Color.Gray nsc.AddRange(New Object() {ns1, ns2}) FpSpread1.NamedStyles = nsc FpSpread1.ActiveSheet.ColumnHeader.DefaultStyle = nsc(0) FpSpread1.ActiveSheet.DefaultStyle = nsc(1) Dim myarray(nsc.Count()) nsc.CopyTo(myarray, 0) Label1.Text = "The name of the first style in the collection " & myarray.GetValue(0).ToString()