MESCIUS SPREAD for ASP.NET 10.0J
Add メソッド (GroupInfoCollection)

要素のコレクション内のインデックス
追加するGroupInfoオブジェクト
構文
'Declaration
 
Public Overridable Function Add( _
   ByVal value As GroupInfo _
) As Integer
public virtual int Add( 
   GroupInfo value
)

パラメータ

value
要素のコレクション内のインデックス

戻り値の型

例外
例外説明
System.ArgumentNullExceptionコレクションからすべての 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();
gic.Add(gi);
FpSpread1.ActiveSheetView.GroupInfos.Add(gic[0]);

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

Dim gi As New FarPoint.Web.Spread.GroupInfo
gi.BackColor = Color.Yellow
Dim gi2 As New FarPoint.Web.Spread.GroupInfo
gi2.BackColor = Color.Green
Dim gic As New FarPoint.Web.Spread.GroupInfoCollection()
gic.Add(gi)
FpSpread1.ActiveSheetView.GroupInfos.Add(gic(0))
参照

GroupInfoCollection クラス
GroupInfoCollection メンバ

 

 


© MESCIUS inc. All rights reserved.