FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > DefaultStyleCollection クラス > CopyTo メソッド : CopyTo(Array,Int32) メソッド |
'使用法 Dim instance As DefaultStyleCollection 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.DefaultStyleCollection dsc = new FarPoint.Win.Spread.DefaultStyleCollection(); Object[] myarray = new Object[dsc.Count]; FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo(); foreach(FarPoint.Win.Spread.NamedStyle style in FarPoint.Win.Spread.DefaultStyleCollection.Styles) { listBox1.Items.Add(style.Name); dsc.CopyTo(myarray,0); }
Dim dsc As New FarPoint.Win.Spread.DefaultStyleCollection() Dim style As FarPoint.Win.Spread.NamedStyle Dim myarray(dsc.Count()) Dim si As New FarPoint.Win.Spread.StyleInfo() For Each style In dsc.Styles ListBox1.Items.Add(style.Name) dsc.CopyTo(myarray, 0) Next