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

コレクション内でチェックする GroupInfo オブジェクト
指定した GroupInfo オブジェクトがコレクションに含まれるかどうかを判定します。
構文
'Declaration
 
Public Overridable Function Contains( _
   ByVal value As GroupInfo _
) As Boolean
public virtual bool Contains( 
   GroupInfo value
)

パラメータ

value
コレクション内でチェックする GroupInfo オブジェクト

戻り値の型

指定したオブジェクトがコレクションに含まれている場合は True、それ以外の場合は False
次のサンプル コードは、グループ項目がコレクションに属する場合、そのグループ項目を削除します。
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)) {
    gic.Remove(gi);
}

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
gic.Remove(gi)
End If
参照

GroupInfoCollection クラス
GroupInfoCollection メンバ

 

 


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