PowerTools SPREAD for ASP.NET 8.0J
スタイル行フィルタ

スタイル行フィルタを適用する場合は、通常どおりすべてのデータを表示し、特定の基準を満たした行だけを強調表示できますが、この場合はフィルタインスタイルとフィルタアウトスタイルを定義する必要があります。

スタイルの定義には、名前付きスタイルを使用します。

設定方法

スタイル行フィルタは、StyleRowFilter クラスを使用して生成します。StyleRowFilter クラスのInStyle プロパティおよびOutStyle プロパティに、名前付きスタイルを定義したNamedStyle オブジェクトを設定します。

StyleRowFilter クラスのAddColumn メソッドを使用して、列ごとのフィルタ項目を定義したFilterColumnDefinition クラスを追加します。

SheetView クラスRowFilter プロパティに作成したStyleRowFilter オブジェクトを設定すると、シートにフィルタリングが適用されます。

サンプルコード

次のサンプルコードは、スタイル行フィルタを設定します。

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

SPREAD デザイナでの設定

  1. SheetViewコレクションエディタを起動します。
  2. プロパティグリッドのRowFilterプロパティから「StyleRowFilter」を選択します。
  3. StyleRowFilter クラスのプロパティがグリッドに追加されます。
  4. InStyle および OutStyle プロパティから、NamedStyleクラスのプロパティが展開されるので、必要に応じてスタイルを設定します。
  5. 必要に応じてその他のプロパティも設定します。
  6. 〈OK〉ボタンをクリックします。
関連トピック

 

 


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