MESCIUS SPREAD for ASP.NET 10.0J
Grouping イベント

ユーザーがグループ化を行ったときに発生します。
構文
'Declaration
 
Public Event Grouping As GroupingEventHandler
public event GroupingEventHandler Grouping
イベント データ

イベント ハンドラが、このイベントに関連するデータを含む、GroupingEventArgs 型の引数を受け取りました。次の GroupingEventArgs プロパティには、このイベントの固有の情報が記載されます。

プロパティ説明
Cancelグループ化をキャンセルするかどうかを取得または設定します。  
GroupComparerグループ比較子を取得または設定します。  
SortInfoソート情報を取得します。  
解説

GroupingEventHandlerは、このイベントに関連するデータを含むGroupingEventArgs型の引数を受け取ります。このイベントは、ユーザーが最後のグループをグループ解除するときにも発生します。

次のサンプルコードは、Groupingイベントを使用します。
FpSpread1.ActiveSheetView.AllowColumnMove = true;
FpSpread1.ActiveSheetView.GroupBarVisible = true;
FpSpread1.ActiveSheetView.GroupBarBackColor = Drawing.Color.Salmon;
FpSpread1.ActiveSheetView.GroupBarHeight = 50;
FpSpread1.ActiveSheetView.GroupMaximumLevel = 5;
FpSpread1.ActiveSheetView.AllowGroup = true;
FarPoint.Web.Spread.GroupInfo gi = new FarPoint.Web.Spread.GroupInfo();
gi.BackColor = Drawing.Color.Yellow;
FarPoint.Web.Spread.GroupInf gi2 = new FarPoint.Web.Spread.GroupInfo();
gi2.BackColor = Drawing.Color.Green;
FarPoint.Web.Spread.GroupInfoCollection gic = new FarPoint.Web.Spread.GroupInfoCollection();
gic.Add(gi);
FpSpread1.ActiveSheetView.GroupInfos.Add(gic(0));

protected void FpSpread1_Grouping(object sender, FarPoint.Web.Spread.GroupingEventArgs e)
{
    e.Cancel = true;
}
FpSpread1.ActiveSheetView.AllowColumnMove = True
FpSpread1.ActiveSheetView.GroupBarVisible = True
FpSpread1.ActiveSheetView.GroupBarBackColor = Drawing.Color.Salmon
FpSpread1.ActiveSheetView.GroupBarHeight = 50
FpSpread1.ActiveSheetView.GroupMaximumLevel = 5
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()
gic.Add(gi)
FpSpread1.ActiveSheetView.GroupInfos.Add(gic(0))

Protected Sub FpSpread1_Grouping(ByVal sender As Object, ByVal e As FarPoint.Web.Spread.GroupingEventArgs) Handles FpSpread1.Grouping
    e.Cancel = True
End Sub
参照

FpSpread クラス
FpSpread メンバ

 

 


© MESCIUS inc. All rights reserved.