MESCIUS SPREAD for ASP.NET 10.0J
FilterString プロパティ

フィルタ文字列を取得します。
構文
'Declaration
 
Public ReadOnly Property FilterString As String
public string FilterString {get;}
次のサンプルコードは、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
参照

AutoFilteredColumnEventArgs クラス
AutoFilteredColumnEventArgs メンバ

 

 


© MESCIUS inc. All rights reserved.