FarPoint.Win.Spread.NamedStyle styleCool = new FarPoint.Win.Spread.NamedStyle();
styleCool.BackColor = Color.Cyan;
FarPoint.CalcEngine.Expression one;
FarPoint.CalcEngine.Expression two;
one = new FarPoint.CalcEngine.DoubleExpression(20);
two = new FarPoint.CalcEngine.DoubleExpression(50);
fpSpread1.ActiveSheet.SetConditionalFormat(1, 1, styleCool, FarPoint.Win.Spread.ComparisonOperator.Between, one, two);
fpSpread1.ActiveSheet.Cells[1, 1].Value = 40;
Dim styleCool As New FarPoint.Win.Spread.NamedStyle
styleCool.BackColor = Color.Cyan
Dim one As FarPoint.CalcEngine.Expression
Dim two As FarPoint.CalcEngine.Expression
one = New FarPoint.CalcEngine.DoubleExpression(20.0)
two = New FarPoint.CalcEngine.DoubleExpression(50.0)
FpSpread1.ActiveSheet.SetConditionalFormat(1, 1, styleCool, FarPoint.Win.Spread.ComparisonOperator.Between, one, two)
FpSpread1.ActiveSheet.Cells(1, 1).Value = 40