请教,大神:
之前由于版本过低,实现条件格式,当前单元格值不等于“正确”时背景颜色为红色,实现代码如下:
FarPoint.Web.Spread.NamedStyle styleCold = new FarPoint.Web.Spread.NamedStyle();
styleCold.BackColor = Color.Red;
FarPoint.CalcEngine.Expression ce = new FarPoint.CalcEngine.StringExpression("正确");
spread.ActiveSheetView.SetConditionalFormat(4, 12, styleCold, FarPoint.Web.Spread.ComparisonOperator.NotEqualTo, ce);
现遇到问题,比如满足条件为红色,不满足条件默认应该为黄色,条件切换时背景颜色不发生变化。
在Excel中发现如图:
默认条件格式“如果为真则停止”这个属性是默认选中的,请教如何在代码中设置这个属性?将初始值 调整为未选中。谢谢!
|
|