MESCIUS SPREAD for ASP.NET 10.0J > 開発者の手引き > スタイル > セルの条件付き書式 > ルールによる条件付き書式 |
ルールを使用して、条件付き書式を作成することができます。たとえば、スケールルールでは、スライディングスケールを使用して色を設定できます1が黄で50を緑と設定しておくと、25は黄緑色になります。
セルに条件付き書式を適用するには、次のいずれかの方法で行います。
なお、複数の条件付き書式を定義する場合は、条件付き書式オブジェクトのPriority プロパティを使用して優先順位を指定することも可能です。
条件付き書式ルールを定義したオブジェクトの基底クラスは、ConditionalFormattingRule クラスです。このクラスから様々なルールを定義したクラスが派生しています。詳細については、以下のトピックを参照してください。
次のサンプルコードは、2種類の条件付き書式を設定する例です。
FpSpread1.Sheets[0].Cells[0, 0].Value = 3; FpSpread1.Sheets[0].Cells[1, 0].Value = 2; FpSpread1.Sheets[0].Cells[1, 1].Value = 10; FpSpread1.Sheets[0].Cells[0, 2].Value = 1; // カラースケールを設定します。 FarPoint.Web.Spread.ThreeColorScaleConditionalFormattingRule colorRule = new FarPoint.Web.Spread.ThreeColorScaleConditionalFormattingRule(Color.Aqua, Color.Bisque, Color.BlueViolet); FarPoint.Web.Spread.Model.CellRange celRange1 = new FarPoint.Web.Spread.Model.CellRange(0, 0, 3, 3); FpSpread1.Sheets[0].SetConditionalFormatting(new FarPoint.Web.Spread.Model.CellRange[] { celRange1 }, colorRule); // アイコンセットを設定します。 FarPoint.Web.Spread.IconSetConditionalFormattingRule iconRule = new FarPoint.Web.Spread.IconSetConditionalFormattingRule(FarPoint.Web.Spread.ConditionalFormattingIconSetStyle.ThreeCircledSymbols); FarPoint.Web.Spread.ConditionalFormatting cfRule = new FarPoint.Web.Spread.ConditionalFormatting(new FarPoint.Web.Spread.Model.CellRange(0, 1, 5, 1), iconRule); FpSpread1.Sheets[0].ConditionalFormatting.Add(cfRule);
FpSpread1.Sheets(0).Cells(0, 0).Value = 3 FpSpread1.Sheets(0).Cells(1, 0).Value = 2 FpSpread1.Sheets(0).Cells(1, 1).Value = 10 FpSpread1.Sheets(0).Cells(0, 2).Value = 1 ' カラースケールを設定します。 Dim colorRule As New FarPoint.Web.Spread.ThreeColorScaleConditionalFormattingRule(Color.Aqua, Color.Bisque, Color.BlueViolet) Dim celRange1 As New FarPoint.Web.Spread.Model.CellRange(0, 0, 3, 3) FpSpread1.Sheets(0).SetConditionalFormatting(New FarPoint.Web.Spread.Model.CellRange() { celRange1 }, colorRule) ' アイコンセットを設定します。 Dim iconRule As New FarPoint.Web.Spread.IconSetConditionalFormattingRule(FarPoint.Web.Spread.ConditionalFormattingIconSetStyle.ThreeCircledSymbols) Dim cfRule As New FarPoint.Web.Spread.ConditionalFormatting(New FarPoint.Web.Spread.Model.CellRange(0, 1, 5, 1), iconRule) FpSpread1.Sheets(0).ConditionalFormatting.Add(cfRule);