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

指定されたインデックスが有効範囲外です。「0〜コレクション内の合計数」の範囲で指定してください。
削除するGroupInfoオブジェクトの0から始まるインデックス
構文
'Declaration
 
Public Overridable Sub RemoveAt( _
   ByVal index As Integer _
) 
public virtual void RemoveAt( 
   int index
)

パラメータ

index
指定されたインデックスが有効範囲外です。「0〜コレクション内の合計数」の範囲で指定してください。
例外
例外説明
System.IndexOutOfRangeExceptionスタイルが指定されていないか、指定されたスタイルがNullです。スタイルを指定する必要があります。
次のサンプル コードは、グループ項目がコレクションに属する場合、そのグループ項目を削除します。
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 メンバ

 

 


© MESCIUS inc. All rights reserved.