PowerTools SPREAD for ASP.NET 8.0J
FilterListBehavior 列挙体

行フィルタの動作方法を指定します。
構文
'Declaration
 
Public Enum FilterListBehavior 
   Inherits System.Enum
public enum FilterListBehavior : System.Enum 
メンバ
メンバ説明
Blank[2] 必要に応じて、ドロップダウン リストに "(空白セル)" 項目を表示します。
Custom[0] カスタム フィルタを使用します。
Default[1031] デフォルトのフィルタ動作(Blank + NonBlank + SortAlphabetically)を使用します。
DefaultFilter[1024] ドロップダウンリストにIFilterItemのDefaultFilterItem実装を含めます。
NonBlank[4] 必要に応じて、ドロップダウン リストに "(空白以外のセル)" 項目を表示します。
SortAlphabetically[1025] デフォルトのフィルタ動作を使用し、ドロップダウン リストをアルファベット順に並べ替えます。
SortByLeastOccurrences[1040] ドロップダウン リストの項目を出現頻度が低い順に並べ替えます。
SortByMostOccurrences[1032] ドロップダウン リストの項目を出現頻度が高い順に並べ替えます。
SortNoSort[1056] デフォルトのフィルタ動作を使用し、ドロップダウンリストのソートを実行しません。
次のサンプルコードは、フィルタリストの動作を設定します。
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.FilterColumnDefinition fcd = new FarPoint.Web.Spread.FilterColumnDefinition(1, FarPoint.Web.Spread.FilterListBehavior.SortByMostOccurrences | FarPoint.Web.Spread.FilterListBehavior.Default); 
FarPoint.Web.Spread.FilterColumnDefinition fcd1 = new FarPoint.Web.Spread.FilterColumnDefinition(2);
FarPoint.Web.Spread.FilterColumnDefinition fcd2 = new FarPoint.Web.Spread.FilterColumnDefinition();
FarPoint.Web.Spread.StyleRowFilter sf = new FarPoint.Web.Spread.StyleRowFilter(FpSpread1.Sheets[0], instyle, outstyle);
sf.AddColumn(fcd);
sf.AddColumn(fcd1); 
sf.AddColumn(fcd2);
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 fcd As New FarPoint.Web.Spread.FilterColumnDefinition(1, FarPoint.Web.Spread.FilterListBehavior.SortByMostOccurrences Or FarPoint.Web.Spread.FilterListBehavior.Default)
Dim fcd1 As New FarPoint.Web.Spread.FilterColumnDefinition(2)
Dim fcd2 As New FarPoint.Web.Spread.FilterColumnDefinition()
Dim sf As New FarPoint.Web.Spread.StyleRowFilter(FpSpread1.Sheets(0), instyle, outstyle)
sf.AddColumn(fcd) 
sf.AddColumn(fcd1)
sf.AddColumn(fcd2)
FpSpread1.Sheets(0).RowFilter = sf
継承階層

System.Object
   System.ValueType
      System.Enum
         FarPoint.Web.Spread.FilterListBehavior

参照

FarPoint.Web.Spread 名前空間

開発者の手引き

フィルタリングの概要

 

 


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