[]
条件格式中的表达式规则用于设置表达式规则的公式。 可以使用 IFormatCondition 接口的方法添加此规则。
请参阅以下示例代码以在工作表中添加表达式规则。
// Adding Expression Rule
Object[][] data = new Object[][]
{
{ 1, 2 },
{ 0, 1 },
{ 0, 0 },
{ 0, 3 },
{ 4, 5 }
};
worksheet.getRange("A1:B5").setValue(data);
IFormatCondition condition = (IFormatCondition) worksheet.getRange("B1:B5").getFormatConditions().add(FormatConditionType.Expression, FormatConditionOperator.None, "=A1",null);
condition.getInterior().setColor(Color.FromArgb(255, 0, 0));