PowerTools SPREAD for ASP.NET 8.0J
RemoveAt メソッド (GroupInfoCollection)

削除するGroupInfoオブジェクトの0から始まるインデックス
コレクションの指定したインデックスからGroupInfoオブジェクトを削除します。
構文
'Declaration
 
Public Overridable Sub RemoveAt( _
   ByVal index As Integer _
) 
public virtual void RemoveAt( 
   int index
)

パラメータ

index
削除するGroupInfoオブジェクトの0から始まるインデックス
例外
例外説明
System.IndexOutOfRangeException指定されたインデックスが有効範囲外です。「0〜コレクション内の合計数」の範囲で指定してください。
次のサンプル コードは、グループ項目がコレクションに属する場合、そのグループ項目を削除します。
FpSpread1.ActiveSheetView.AllowColumnMove = true;
FpSpread1.ActiveSheetView.GroupBarVisible = true;
FpSpread1.ActiveSheetView.AllowGroup = true;

FarPoint.Web.Spread.GroupInfo gi = new FarPoint.Web.Spread.GroupInfo();
gi.BackColor = Color.Yellow;
FarPoint.Web.Spread.GroupInfo gi2 = new FarPoint.Web.Spread.GroupInfo();
gi2.BackColor = Color.Green;
FarPoint.Web.Spread.GroupInfoCollection gic = new FarPoint.Web.Spread.GroupInfoCollection();
gic.AddRange(new FarPoint.Web.Spread.GroupInfo[] {gi, gi2});
FpSpread1.ActiveSheetView.GroupInfos.Add(gic[0]);
if (gic.Contains(gi)) {
    int i;
    gic.IndexOf(gi);
    gic.RemoveAt(i);
}

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.AddRange(New FarPoint.Web.Spread.GroupInfo() {gi, gi2})
FpSpread1.ActiveSheetView.GroupInfos.Add(gic(0))
If gic.Contains(gi) Then
Dim i As Integer
gic.IndexOf(gi)
gic.RemoveAt(i)
End If
参照

GroupInfoCollection クラス
GroupInfoCollection メンバ

 

 


© 2003-2015, GrapeCity inc. All rights reserved.