FarPoint.Web.Spread 名前空間 > FpSpread クラス : AutoFilteringColumn イベント |
'Declaration
Public Event AutoFilteringColumn As AutoFilteringColumnEventHandler
public event AutoFilteringColumnEventHandler AutoFilteringColumn
イベント ハンドラが、このイベントに関連するデータを含む、AutoFilteringColumnEventArgs 型の引数を受け取りました。次の AutoFilteringColumnEventArgs プロパティには、このイベントの固有の情報が記載されます。
プロパティ | 説明 |
---|---|
Cancel | フィルタリングをキャンセルするかどうかを取得または設定します。 |
Col | フィルタ列を取得または設定します。 FarPoint.Web.Spread.AutoFilteredColumnEventArgsから継承されます。 |
FilterString | フィルタ文字列を取得します。 FarPoint.Web.Spread.AutoFilteredColumnEventArgsから継承されます。 |
Spread | Spreadオブジェクトを取得または設定します。 FarPoint.Web.Spread.AutoFilteredColumnEventArgsから継承されます。 |
クライアント側AutoFilteringColumnイベントは、クライアントがフィルタリング要求をサーバーに送信する前に発生します。フィルタリング要求がキャンセルされなかった場合、クライアントはフィルタリング要求をサーバーに送信します。
サーバー側AutoFilteringColumnイベントは、フィルタリング操作が実行される前に発生します。サーバーでフィルタリングがキャンセルされなかった場合は、フィルタリング操作が実行された後にサーバー側AutoFilteredColumnイベントが発生します。
クライアント側AutoFilteredColumnイベントは、クライアントがサーバーからフィルタリング結果を受け取った後に発生します。
sheetviewのRowFilterプロパティがnullの場合、次のイベントは発生しません。
AutoFilteringColumnイベント(サーバー側)、AutoFilteredColumnイベント(サーバー側)、AutoFilteredColumnイベント(クライアント側)
列がコードによってフィルタリングされる場合(たとえば、FpSpread1.ActiveSheetView.AutoFilterColumn(1,"apple")など)、クライアント側AutoFilteringColumnイベントは発生しません。その他3つのイベントは次の順序で発生します。
AutoFilteringColumn(サーバー側)
AutoFilteredColumn(サーバー側)
AutoFilteredColumn(クライアント側)
protected void Page_Load(object sender, EventArgs e) { FarPoint.Web.Spread.NamedStyle instyle = new FarPoint.Web.Spread.NamedStyle(); FarPoint.Web.Spread.NamedStyle outstyle = new FarPoint.Web.Spread.NamedStyle(); instyle.BackColor = System.Drawing.Color.Yellow; outstyle.BackColor = System.Drawing.Color.Gray; FarPoint.Web.Spread.StyleRowFilter rf = new FarPoint.Web.Spread.StyleRowFilter(FpSpread1.Sheets[0], instyle, outstyle); FpSpread1.Sheets[0].RowFilter = rf; // Assign filter and customize filter options FpSpread1.Sheets[0].RowFilter.AddColumn(1); FpSpread1.Sheets[0].RowFilter.ShowFilterIndicator = true; FpSpread1.Sheets[0].Cells[0, 1].Value = "test"; } protected void FpSpread1_AutoFilteringColumn(object sender, FarPoint.Web.Spread.FilteringEventArgs e) { FpSpread1.Sheets[0].Cells[0, 0].Text = e.FilterString; FpSpread1.Sheets[0].Cells[1, 0].Text = e.Col.ToString(); } protected void FpSpread1_AutoFilteredColumn(object sender, FarPoint.Web.Spread.FilteredEventArgs e) { FpSpread1.Sheets[0].Cells[0, 0].Text = e.FilterString; FpSpread1.Sheets[0].Cells[1, 0].Text = e.Col.ToString(); }
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Dim instyle As New FarPoint.Web.Spread.NamedStyle() Dim outstyle As New FarPoint.Web.Spread.NamedStyle() instyle.BackColor = Drawing.Color.Yellow outstyle.BackColor = Drawing.Color.Gray Dim rf As New FarPoint.Web.Spread.StyleRowFilter(FpSpread1.Sheets(0), instyle, outstyle) FpSpread1.Sheets(0).RowFilter = rf ' Assign filter and customize filter options FpSpread1.Sheets(0).RowFilter.AddColumn(1) FpSpread1.Sheets(0).RowFilter.ShowFilterIndicator = True FpSpread1.Sheets(0).Cells(0, 1).Value = "test" End Sub Protected Sub FpSpread1_AutoFilteringColumn(ByVal sender As Object, ByVal e As FarPoint.Web.Spread.FilteringEventArgs) Handles FpSpread1.AutoFilteringColumn FpSpread1.Sheets(0).Cells(0, 0).Text = e.FilterString FpSpread1.Sheets(0).Cells(1, 0).Text = e.Col.ToString() End Sub Protected Sub FpSpread1_AutoFilteredColumn(ByVal sender As Object, ByVal e As FarPoint.Web.Spread.FilteredEventArgs) Handles FpSpread1.AutoFilteredColumn FpSpread1.Sheets(0).Cells(0, 0).Text = e.FilterString FpSpread1.Sheets(0).Cells(1, 0).Text = e.Col.ToString() End Sub