MESCIUS SPREAD for ASP.NET 10.0J
AddColumn(FilterColumnDefinition) メソッド

フィルタ列定義を行フィルタから削除します。
フィルタ列定義を含むFilterColumnDefinitionオブジェクト
構文
'Declaration
 
Public Overloads Sub AddColumn( _
   ByVal fcd As FilterColumnDefinition _
) 
public void AddColumn( 
   FilterColumnDefinition fcd
)

パラメータ

fcd
フィルタ列定義を行フィルタから削除します。
次のサンプルコードは、行フィルタを設定します。
FarPoint.Web.Spread.NamedStyle instyle = new FarPoint.Web.Spread.NamedStyle();
FarPoint.Web.Spread.NamedStyle outstyle = new FarPoint.Web.Spread.NamedStyle();
instyle.BackColor = Color.Yellow;
outstyle.BackColor = 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].RowFilter.AllString = "Show All";
FpSpread1.Sheets[0].RowFilter.BlanksString = "Show The Blanks";
FpSpread1.Sheets[0].RowFilter.NonBlanksString = "Show The Non-Blanks";
Dim instyle As New FarPoint.Web.Spread.NamedStyle()
Dim outstyle As New FarPoint.Web.Spread.NamedStyle()
instyle.BackColor = Color.Yellow
outstyle.BackColor = 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).RowFilter.AllString = "Show All"
FpSpread1.Sheets(0).RowFilter.BlanksString = "Show The Blanks"
FpSpread1.Sheets(0).RowFilter.NonBlanksString = "Show The Non-Blanks"
参照

DefaultRowFilter クラス
DefaultRowFilter メンバ
オーバーロード一覧

 

 


© MESCIUS inc. All rights reserved.