PowerTools SPREAD for ASP.NET 8.0J
AddColumn(Int32,FilterListBehavior) メソッド

列インデックス
リストの動作を含むFilterListBehaviorオブジェクト
リスト動作を指定して、行フィルタにフィルタ列定義を追加します。
構文
'Declaration
 
Public Overloads Sub AddColumn( _
   ByVal viewColumnIndex As Integer, _
   ByVal listBehavior As FilterListBehavior _
) 

パラメータ

viewColumnIndex
列インデックス
listBehavior
リストの動作を含むFilterListBehaviorオブジェクト
次のサンプルコードは、行フィルタを設定します。
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.Aquamarine;
FarPoint.Web.Spread.StyleRowFilter sf = new FarPoint.Web.Spread.StyleRowFilter(FpSpread1.Sheets[0], instyle, outstyle);
sf.AddColumn(new FarPoint.Web.Spread.FilterColumnDefinition(1));
FpSpread1.Sheets[0].RowFilter = sf;
Dim instyle As New FarPoint.Web.Spread.NamedStyle() 
Dim outstyle As New FarPoint.Web.Spread.NamedStyle()
instyle.BackColor = Color.Yellow
outstyle.BackColor = Color.Aquamarine
Dim sf As New FarPoint.Web.Spread.StyleRowFilter(FpSpread1.Sheets(0), instyle, outstyle)
sf.AddColumn(New FarPoint.Web.Spread.FilterColumnDefinition(1))
FpSpread1.Sheets(0).RowFilter = sf
参照

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

 

 


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