DioDocs for Excel
DioDocs for Excel
式ルールの追加
機能 > 条件付き書式設定 > 式ルールの追加

条件付き書式設定の式ルールは、式ルールの数式を設定するために使用されます。このルールは、IFormatConditionインタフェースのプロパティとメソッドを使用して追加できます。

ワークシートに式ルールを追加する方法については、次のサンプルコードを参照してください。

C#
コードのコピー
//式ルールを追加します
worksheet.Range["A1:B5"].Value = new object[,]
{
    {1, 2},
    {0, 1},
    {0, 0},
    {0, 3},
    {4, 5}
};
IFormatCondition condition = worksheet.Range["B1:B5"].FormatConditions.Add(FormatConditionType.Expression, 0, "=A1") as IFormatCondition;
condition.Interior.Color = Color.FromArgb(255, 0, 0);