MESCIUS SPREAD for ASP.NET 10.0J
AddRange(ICollection) メソッド

GroupInfo オブジェクトの配列をコレクションに追加します。
コレクションに追加する GroupInfoCollection または GroupInfo オブジェクトの配列
構文
'Declaration
 
Public Overloads Overridable Sub AddRange( _
   ByVal c As ICollection _
) 
public virtual void AddRange( 
   ICollection c
)

パラメータ

c
GroupInfo オブジェクトの配列をコレクションに追加します。
次のサンプル コードは、コレクションの1つを GroupInfo 項目の配列にコピーします。
FpSpread1.ActiveSheetView.AllowColumnMove = true;
FpSpread1.ActiveSheetView.GroupBarVisible = true;
FpSpread1.ActiveSheetView.AllowGroup = true;

FarPoint.Web.Spread.GroupInfo gi = new FarPoint.Web.Spread.GroupInfo();
gi.BackColor = System.Drawing.Color.Yellow;
FarPoint.Web.Spread.GroupInfo gi2 = new FarPoint.Web.Spread.GroupInfo();
gi2.BackColor = System.Drawing.Color.Green;
FarPoint.Web.Spread.GroupInfoCollection gic = new FarPoint.Web.Spread.GroupInfoCollection();
System.Collections.ArrayList coll = new System.Collections.ArrayList(3);
coll.AddRange(new Object[] { gi, gi2 });
gic.AddRange(coll);
FpSpread1.ActiveSheetView.GroupInfos.Add(gic[1]);

FpSpread1.ActiveSheetView.AllowColumnMove = True
FpSpread1.ActiveSheetView.GroupBarVisible = True
FpSpread1.ActiveSheetView.AllowGroup = True

Dim gi As New FarPoint.Web.Spread.GroupInfo
gi.BackColor = Drawing.Color.Yellow
Dim gi2 As New FarPoint.Web.Spread.GroupInfo
gi2.BackColor = Drawing.Color.Green
Dim gic As New FarPoint.Web.Spread.GroupInfoCollection()
Dim coll As New System.Collections.ArrayList(3)
coll.AddRange(New Object() {gi, gi2})
gic.AddRange(coll)
FpSpread1.ActiveSheetView.GroupInfos.Add(gic(1))
参照

GroupInfoCollection クラス
GroupInfoCollection メンバ
オーバーロード一覧

 

 


© MESCIUS inc. All rights reserved.