FarPoint.Web.Spread 名前空間 > DefaultSkins クラス : CopyTo メソッド |
例外 | 説明 |
---|---|
System.ArgumentNullException | 指定した配列は有効ではありません。有効なランクは1です。 |
System.ArgumentException | 指定した配列は無効です。十分な長さを持っている必要があります。 |
System.ArgumentException | 指定したインデックスは範囲外です。ゼロより大きくする必要があります。 |
System.IndexOutOfRangeException | GroupInfo オブジェクトをコレクションに追加します。 |
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));
Dim ds As New FarPoint.Web.Spread.DefaultSkins Dim myarray(ds.Count) ds.CopyTo(myarray, 0) TextBox1.Text = Convert.ToString(myarray.GetValue(4))